summaryrefslogtreecommitdiff
path: root/sys/kern/sys_process.c
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1999-02-26 05:12:19 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1999-02-26 05:12:19 +0000
commit6fe4222e3408e460e52471a7c77eb6a734d91f2b (patch)
tree9dd617b4d939e74f383056e84674bca46fdf3dbb /sys/kern/sys_process.c
parent2f5d579dd9378450f2c2f1627bb16331ed82f9e7 (diff)
kmem allocation changes for uvm
Diffstat (limited to 'sys/kern/sys_process.c')
-rw-r--r--sys/kern/sys_process.c7
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>