summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2004-01-29 20:50:34 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2004-01-29 20:50:34 +0000
commit613fb17340e7a18b0ae034a6fbf0210c9218dce9 (patch)
tree288d8b5a1f2a9064a63c28e1cef3401afdaed441
parent409929b879393a4a28d09eee4797e91c33838b87 (diff)
fix prototype of pmap_update(), ok miod@
-rw-r--r--sys/uvm/uvm_pmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_pmap.h b/sys/uvm/uvm_pmap.h
index 1a937d1a1b1..36136d35eb9 100644
--- a/sys/uvm/uvm_pmap.h
+++ b/sys/uvm/uvm_pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_pmap.h,v 1.16 2003/06/02 23:28:24 millert Exp $ */
+/* $OpenBSD: uvm_pmap.h,v 1.17 2004/01/29 20:50:33 drahn Exp $ */
/* $NetBSD: uvm_pmap.h,v 1.1 2000/06/27 09:00:14 mrg Exp $ */
/*
@@ -157,7 +157,7 @@ void pmap_reference(pmap_t);
void pmap_remove(pmap_t, vaddr_t, vaddr_t);
#endif
#if !defined(pmap_update)
-void pmap_update(void);
+void pmap_update(pmap_t);
#endif
#if !defined(pmap_zero_page)
void pmap_zero_page(struct vm_page *);