summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-11-06 02:55:52 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-11-06 02:55:52 +0000
commit022e1a0036c9933dc752492d039c282c9c1d92d5 (patch)
tree1c3b9988663da5a53b0299c1062873b1d51d4271 /sys/arch/powerpc
parent7e94cc129d535fba8466e5eb50194709de1a4d98 (diff)
Need to prototype pmap_pinit and pmap_release here.
(although they are leftovers from an earlier bad time, the macppc decided that it's a good idea to use them.)
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r--sys/arch/powerpc/include/pmap.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/pmap.h b/sys/arch/powerpc/include/pmap.h
index e8794dabcf0..363f4524663 100644
--- a/sys/arch/powerpc/include/pmap.h
+++ b/sys/arch/powerpc/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.20 2001/09/18 13:59:23 drahn Exp $ */
+/* $OpenBSD: pmap.h,v 1.21 2001/11/06 02:55:51 art Exp $ */
/* $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */
/*-
@@ -107,6 +107,9 @@ int ptebits(paddr_t pa, int bit);
void pmap_bootstrap __P((u_int kernelstart, u_int kernelend));
+void pmap_pinit __P((struct pmap *));
+void pmap_release __P((struct pmap *));
+
void pmap_real_memory __P((vm_offset_t *start, vm_size_t *size));
void switchexit __P((struct proc *));