diff options
author | 2002-03-14 04:41:18 +0000 | |
---|---|---|
committer | 2002-03-14 04:41:18 +0000 | |
commit | 34b934ec90c3e6317083a2b42897403e92198030 (patch) | |
tree | 52d3c6afbbdc6814f4456db9508245f336ef5451 | |
parent | Don't prototype pciide_machdep_compat_intr_establish() and (diff) | |
download | wireguard-openbsd-34b934ec90c3e6317083a2b42897403e92198030.tar.xz wireguard-openbsd-34b934ec90c3e6317083a2b42897403e92198030.zip |
do not proto pmap(de)activate if one was defined
-rw-r--r-- | sys/uvm/uvm_pmap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/uvm/uvm_pmap.h b/sys/uvm/uvm_pmap.h index efec7c584a4..5478149c61c 100644 --- a/sys/uvm/uvm_pmap.h +++ b/sys/uvm/uvm_pmap.h @@ -100,8 +100,12 @@ typedef struct pmap_statistics *pmap_statistics_t; #ifdef _KERNEL __BEGIN_DECLS void *pmap_bootstrap_alloc(int); +#ifndef pmap_activate void pmap_activate(struct proc *); +#endif +#ifndef pmap_deactivate void pmap_deactivate(struct proc *); +#endif void pmap_unwire(pmap_t, vaddr_t); #if !defined(pmap_clear_modify) |