summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-04-28 10:57:04 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-04-28 10:57:04 +0000
commitacde1fe83b73b07a04503112a6cccf0a3d246c41 (patch)
treeabf5896621e3c590fac1abc9e86257c125c29745 /sys
parent63139f6498253df38b722ed008c8bd7fb30b5532 (diff)
change vmapbuf/vunmapbuf decls
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/mvme68k/mvme68k/vm_machdep.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/arch/mvme68k/mvme68k/vm_machdep.c b/sys/arch/mvme68k/mvme68k/vm_machdep.c
index 99de3b7756a..fa64557e123 100644
--- a/sys/arch/mvme68k/mvme68k/vm_machdep.c
+++ b/sys/arch/mvme68k/mvme68k/vm_machdep.c
@@ -1,4 +1,4 @@
-/* $Id: vm_machdep.c,v 1.4 1995/12/15 02:24:42 deraadt Exp $ */
+/* $OpenBSD: vm_machdep.c,v 1.5 1996/04/28 10:57:03 deraadt Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -269,8 +269,10 @@ extern vm_map_t phys_map;
* is a total crock, the multiple mappings of these physical pages should
* be reflected in the higher-level VM structures to avoid problems.
*/
-vmapbuf(bp)
+void
+vmapbuf(bp, siz)
register struct buf *bp;
+ vm_size_t siz;
{
register int npf;
register caddr_t addr;
@@ -303,8 +305,10 @@ vmapbuf(bp)
/*
* Free the io map PTEs associated with this IO operation.
*/
-vunmapbuf(bp)
+void
+vunmapbuf(bp, siz)
register struct buf *bp;
+ vm_size_t siz;
{
register caddr_t addr;
register int npf;