summaryrefslogtreecommitdiff
path: root/sys/uvm/uvm.h
diff options
context:
space:
mode:
authorsmart <smart@cvs.openbsd.org>2001-03-22 03:05:58 +0000
committersmart <smart@cvs.openbsd.org>2001-03-22 03:05:58 +0000
commit80fbdb56b71a03079797681445932c9923f5020e (patch)
treeeb00f62b05e7c379bd5703f4122c0c5ff579cfc7 /sys/uvm/uvm.h
parent44b8e549ef87f77e2b48c08e7c4994efeea39676 (diff)
Sync style, typo, and comments a little closer to NetBSD. art@ ok
Diffstat (limited to 'sys/uvm/uvm.h')
-rw-r--r--sys/uvm/uvm.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/sys/uvm/uvm.h b/sys/uvm/uvm.h
index 22f026f92e5..9668bf485dd 100644
--- a/sys/uvm/uvm.h
+++ b/sys/uvm/uvm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm.h,v 1.7 2001/03/09 05:34:38 smart Exp $ */
+/* $OpenBSD: uvm.h,v 1.8 2001/03/22 03:05:54 smart Exp $ */
/* $NetBSD: uvm.h,v 1.16 1999/06/21 17:25:11 thorpej Exp $ */
/*
@@ -150,15 +150,11 @@ UVMHIST_DECL(pdhist);
*/
#if defined(MULTIPROCESSOR) || defined(LOCKDEBUG)
-
#define UVM_UNLOCK_AND_WAIT(event,lock,intr,msg, timo) \
thread_sleep_msg(event,lock,intr,msg, timo)
-
#else
-
#define UVM_UNLOCK_AND_WAIT(event,lock,intr,msg, timo) \
thread_sleep_msg(event,NULL,intr,msg, timo)
-
#endif
/*
@@ -166,13 +162,9 @@ UVMHIST_DECL(pdhist);
*/
#if defined(UVM_PAGE_TRKOWN)
-
#define UVM_PAGE_OWN(PG, TAG) uvm_page_own(PG, TAG)
-
-#else /* UVM_PAGE_TRKOWN */
-
+#else
#define UVM_PAGE_OWN(PG, TAG) /* nothing */
-
#endif /* UVM_PAGE_TRKOWN */
/*