summaryrefslogtreecommitdiff
path: root/sys/arch/sun3/include
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-08-18 20:50:19 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-08-18 20:50:19 +0000
commit75dec7ea0de96f57689fbfe3889a5530555f99c3 (patch)
tree73c92ef9e188aae9707dfef43480bae2eb4c02ca /sys/arch/sun3/include
parent6e5f789df65574e2aa594128398b8a37788805d3 (diff)
Move pmap_{de,}activate to vm/pmap.h, it's same on all archs.
Diffstat (limited to 'sys/arch/sun3/include')
-rw-r--r--sys/arch/sun3/include/pmap.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/sun3/include/pmap.h b/sys/arch/sun3/include/pmap.h
index dba933cadf5..55341d515c2 100644
--- a/sys/arch/sun3/include/pmap.h
+++ b/sys/arch/sun3/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.8 2001/05/30 20:39:59 miod Exp $ */
+/* $OpenBSD: pmap.h,v 1.9 2001/08/18 20:50:18 art Exp $ */
/* $NetBSD: pmap.h,v 1.18 1997/01/27 19:41:06 gwr Exp $ */
/*-
@@ -62,9 +62,6 @@ extern struct pmap kernel_pmap_store;
/* This is called from locore.s:cpu_switch() */
void pmap_switch __P((pmap_t pmap));
-void pmap_activate __P((struct proc *));
-void pmap_deactivate __P((struct proc *));
-
/* This lets us have some say in choosing VA locations. */
extern void pmap_prefer(vm_offset_t, vm_offset_t *);
#define PMAP_PREFER(fo, ap) pmap_prefer((fo), (ap))