diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1999-02-26 05:12:19 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1999-02-26 05:12:19 +0000 |
commit | 6fe4222e3408e460e52471a7c77eb6a734d91f2b (patch) | |
tree | 9dd617b4d939e74f383056e84674bca46fdf3dbb /sys/kern/sys_process.c | |
parent | 2f5d579dd9378450f2c2f1627bb16331ed82f9e7 (diff) |
kmem allocation changes for uvm
Diffstat (limited to 'sys/kern/sys_process.c')
-rw-r--r-- | sys/kern/sys_process.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index 544921f4150..3ef263137e9 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sys_process.c,v 1.6 1998/06/27 07:32:13 deraadt Exp $ */ +/* $OpenBSD: sys_process.c,v 1.7 1999/02/26 05:12:18 art Exp $ */ /* $NetBSD: sys_process.c,v 1.55 1996/05/15 06:17:47 tls Exp $ */ /*- @@ -64,6 +64,11 @@ #include <sys/mount.h> #include <sys/syscallargs.h> +#if defined(UVM) +#include <vm/vm.h> +#include <uvm/uvm_extern.h> +#endif + #include <machine/reg.h> #include <miscfs/procfs/procfs.h> |