Deleted Added
full compact
vm_kern.h (1817) vm_kern.h (2112)
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$
64 * $Id: vm_kern.h,v 1.3 1994/08/02 07:55:23 davidg Exp $
65 */
66
65 */
66
67#ifndef _VM_VM_KERN_H_
68#define _VM_VM_KERN_H_ 1
69
67/* Kernel memory management definitions. */
70/* Kernel memory management definitions. */
71extern vm_map_t buffer_map;
72extern vm_map_t kernel_map;
73extern vm_map_t kmem_map;
74extern vm_map_t mb_map;
75extern vm_map_t io_map;
76extern vm_map_t clean_map;
77extern vm_map_t pager_map;
78extern vm_map_t phys_map;
68
79
69vm_map_t buffer_map;
70vm_map_t kernel_map;
71vm_map_t kmem_map;
72vm_map_t mb_map;
73vm_map_t io_map;
74vm_map_t clean_map;
75vm_map_t pager_map;
76vm_map_t phys_map;
80#endif /* _VM_VM_KERN_H_ */