Deleted Added
full compact
vm_kern.c (12662) vm_kern.c (12726)
1/*
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 47 unchanged lines hidden (view full) ---

56 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
57 * School of Computer Science
58 * Carnegie Mellon University
59 * Pittsburgh PA 15213-3890
60 *
61 * any improvements or extensions that they make and grant Carnegie the
62 * rights to redistribute these changes.
63 *
1/*
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 47 unchanged lines hidden (view full) ---

56 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
57 * School of Computer Science
58 * Carnegie Mellon University
59 * Pittsburgh PA 15213-3890
60 *
61 * any improvements or extensions that they make and grant Carnegie the
62 * rights to redistribute these changes.
63 *
64 * $Id: vm_kern.c,v 1.17 1995/11/13 10:53:38 davidg Exp $
64 * $Id: vm_kern.c,v 1.18 1995/12/07 12:48:13 davidg Exp $
65 */
66
67/*
68 * Kernel memory management.
69 */
70
71#include <sys/param.h>
72#include <sys/systm.h>

--- 9 unchanged lines hidden (view full) ---

82#include <vm/vm_prot.h>
83#include <vm/lock.h>
84#include <vm/pmap.h>
85#include <vm/vm_map.h>
86#include <vm/vm_object.h>
87#include <vm/vm_page.h>
88#include <vm/vm_pageout.h>
89#include <vm/vm_kern.h>
65 */
66
67/*
68 * Kernel memory management.
69 */
70
71#include <sys/param.h>
72#include <sys/systm.h>

--- 9 unchanged lines hidden (view full) ---

82#include <vm/vm_prot.h>
83#include <vm/lock.h>
84#include <vm/pmap.h>
85#include <vm/vm_map.h>
86#include <vm/vm_object.h>
87#include <vm/vm_page.h>
88#include <vm/vm_pageout.h>
89#include <vm/vm_kern.h>
90#include <vm/vm_extern.h>
90
91vm_map_t buffer_map;
92vm_map_t kernel_map;
93vm_map_t kmem_map;
94vm_map_t mb_map;
95int mb_map_full;
96vm_map_t io_map;
97vm_map_t clean_map;

--- 361 unchanged lines hidden ---
91
92vm_map_t buffer_map;
93vm_map_t kernel_map;
94vm_map_t kmem_map;
95vm_map_t mb_map;
96int mb_map_full;
97vm_map_t io_map;
98vm_map_t clean_map;

--- 361 unchanged lines hidden ---