summaryrefslogtreecommitdiff
path: root/sys/vm/pmap.h
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-07-31 13:30:18 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-07-31 13:30:18 +0000
commite110a4ba147576d2848320424749445a1ddd7e3a (patch)
treeba1559e4c8661d6def662ee0268a6d6b00316377 /sys/vm/pmap.h
parentea4eecbf4bd76c74c361c6e9619b0940fa192001 (diff)
pmap_steal_memory takes to vaddr_t * as arguments, not paddr_t *.
For some strange (ehmm) reason, only the prototype was wrong. The implementations were right.
Diffstat (limited to 'sys/vm/pmap.h')
-rw-r--r--sys/vm/pmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h
index 8b26c78a3db..86412ddd24a 100644
--- a/sys/vm/pmap.h
+++ b/sys/vm/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.20 2001/07/25 13:25:33 art Exp $ */
+/* $OpenBSD: pmap.h,v 1.21 2001/07/31 13:30:17 art Exp $ */
/* $NetBSD: pmap.h,v 1.36 1999/11/13 00:24:39 thorpej Exp $ */
/*
@@ -145,7 +145,7 @@ void pmap_update __P((void));
void pmap_zero_page __P((paddr_t));
#if defined(PMAP_STEAL_MEMORY)
-vaddr_t pmap_steal_memory __P((vsize_t, paddr_t *, paddr_t *));
+vaddr_t pmap_steal_memory __P((vsize_t, vaddr_t *, vaddr_t *));
#else
void pmap_virtual_space __P((vaddr_t *, vaddr_t *));
#endif