xref: /original-bsd/sys/vm/vm_user.h (revision 58db4230)
1 /*
2  * Copyright (c) 1986, Avadis Tevanian, Jr., Michael Wayne Young
3  * Copyright (c) 1987 Carnegie-Mellon University
4  * Copyright (c) 1991 Regents of the University of California.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * The Mach Operating System project at Carnegie-Mellon University.
9  *
10  * The CMU software License Agreement specifies the terms and conditions
11  * for use and redistribution.
12  *
13  *	@(#)vm_user.h	7.1 (Berkeley) 12/05/90
14  */
15 
16 /*
17  *	Kernel memory management definitions.
18  */
19 
20 #ifndef	_VM_USER_
21 #define	_VM_USER_
22 
23 int	vm_allocate();
24 int	vm_deallocate();
25 int	vm_inherit();
26 int	vm_protect();
27 int	vm_statistics();
28 
29 #endif	_VM_USER_
30