Deleted Added
full compact
vm_kern.h (24437) vm_kern.h (25164)
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.h,v 1.12 1997/02/22 09:48:21 peter Exp $
64 * $Id: vm_kern.h,v 1.13 1997/03/31 11:11:26 davidg Exp $
65 */
66
67#ifndef _VM_VM_KERN_H_
68#define _VM_VM_KERN_H_ 1
69
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 int mb_map_full;
76extern vm_map_t io_map;
77extern vm_map_t clean_map;
78extern vm_map_t phys_map;
79extern vm_map_t exec_map;
80extern vm_map_t u_map;
65 */
66
67#ifndef _VM_VM_KERN_H_
68#define _VM_VM_KERN_H_ 1
69
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 int mb_map_full;
76extern vm_map_t io_map;
77extern vm_map_t clean_map;
78extern vm_map_t phys_map;
79extern vm_map_t exec_map;
80extern vm_map_t u_map;
81extern vm_map_t ppage_map;
81
82extern vm_offset_t kernel_vm_end;
83/* XXX - elsewhere? */
84extern void *contigmalloc1(u_long, int, int, u_long, u_long, u_long, u_long,
85 vm_map_t);
86
87#endif /* _VM_VM_KERN_H_ */
82
83extern vm_offset_t kernel_vm_end;
84/* XXX - elsewhere? */
85extern void *contigmalloc1(u_long, int, int, u_long, u_long, u_long, u_long,
86 vm_map_t);
87
88#endif /* _VM_VM_KERN_H_ */