diff options
author | 2000-03-15 14:16:12 +0000 | |
---|---|---|
committer | 2000-03-15 14:16:12 +0000 | |
commit | 6056dd660895712bdcb9395d4580e8757188f8a7 (patch) | |
tree | b4c586f1c278a6b776b58e2991d0a664a6e81033 | |
parent | cast the VM_INHERIT_ constants to the correct type. (diff) | |
download | wireguard-openbsd-6056dd660895712bdcb9395d4580e8757188f8a7.tar.xz wireguard-openbsd-6056dd660895712bdcb9395d4580e8757188f8a7.zip |
More stuff that doesn't belong in UVM.
-rw-r--r-- | sys/vm/vm_pageout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_pageout.h b/sys/vm/vm_pageout.h index 7451f5f75b0..ce6c657718e 100644 --- a/sys/vm/vm_pageout.h +++ b/sys/vm/vm_pageout.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_pageout.h,v 1.6 1998/03/01 00:38:22 niklas Exp $ */ +/* $OpenBSD: vm_pageout.h,v 1.7 2000/03/15 14:16:12 art Exp $ */ /* $NetBSD: vm_pageout.h,v 1.14 1998/02/10 14:09:04 mrg Exp $ */ /* @@ -69,6 +69,7 @@ * Header file for pageout daemon. */ +#if !defined(UVM) /* * Exported data structures. */ @@ -88,7 +89,6 @@ u_int32_t vm_pages_reserved; /* i.e., reserved for pageout_daemon */ * Signal pageout-daemon and wait for it. */ -#if !defined(UVM) #ifdef _KERNEL void vm_wait __P((char *)); void vm_pageout __P((void)); |