Deleted Added
full compact
vm_map.h (20449) vm_map.h (20993)
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_map.h,v 1.17 1996/12/07 00:03:43 dyson Exp $
64 * $Id: vm_map.h,v 1.18 1996/12/14 17:54:16 dyson Exp $
65 */
66
67/*
68 * Virtual memory map module definitions.
69 */
70
71#ifndef _VM_MAP_
72#define _VM_MAP_

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

242int vm_map_clean __P((vm_map_t, vm_offset_t, vm_offset_t, boolean_t, boolean_t));
243int vm_map_protect __P((vm_map_t, vm_offset_t, vm_offset_t, vm_prot_t, boolean_t));
244void vm_map_reference __P((vm_map_t));
245int vm_map_remove __P((vm_map_t, vm_offset_t, vm_offset_t));
246void vm_map_simplify __P((vm_map_t, vm_offset_t));
247void vm_map_startup __P((void));
248int vm_map_submap __P((vm_map_t, vm_offset_t, vm_offset_t, vm_map_t));
249void vm_map_madvise __P((vm_map_t, pmap_t, vm_offset_t, vm_offset_t, int));
65 */
66
67/*
68 * Virtual memory map module definitions.
69 */
70
71#ifndef _VM_MAP_
72#define _VM_MAP_

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

242int vm_map_clean __P((vm_map_t, vm_offset_t, vm_offset_t, boolean_t, boolean_t));
243int vm_map_protect __P((vm_map_t, vm_offset_t, vm_offset_t, vm_prot_t, boolean_t));
244void vm_map_reference __P((vm_map_t));
245int vm_map_remove __P((vm_map_t, vm_offset_t, vm_offset_t));
246void vm_map_simplify __P((vm_map_t, vm_offset_t));
247void vm_map_startup __P((void));
248int vm_map_submap __P((vm_map_t, vm_offset_t, vm_offset_t, vm_map_t));
249void vm_map_madvise __P((vm_map_t, pmap_t, vm_offset_t, vm_offset_t, int));
250void vm_map_simplify_entry __P((vm_map_t, vm_map_entry_t));
250
251#endif
252#endif /* _VM_MAP_ */
251
252#endif
253#endif /* _VM_MAP_ */