diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-03-14 15:35:49 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-03-14 15:35:49 +0000 |
commit | c50f9338dabd30f9dc89e85db500430732b636e5 (patch) | |
tree | ab61add62d52accc1c3ad2e3ccb5327b3297ca14 /sys/uvm | |
parent | 90707d14e21ee333040b9f0148684dd907db9151 (diff) |
Prototype pmap_unwire() only if it's not already defined. ok drahn@.
Diffstat (limited to 'sys/uvm')
-rw-r--r-- | sys/uvm/uvm_pmap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/uvm/uvm_pmap.h b/sys/uvm/uvm_pmap.h index 5478149c61c..fdb6cd0e62d 100644 --- a/sys/uvm/uvm_pmap.h +++ b/sys/uvm/uvm_pmap.h @@ -106,7 +106,9 @@ void pmap_activate(struct proc *); #ifndef pmap_deactivate void pmap_deactivate(struct proc *); #endif +#ifndef pmap_unwire void pmap_unwire(pmap_t, vaddr_t); +#endif #if !defined(pmap_clear_modify) boolean_t pmap_clear_modify(struct vm_page *); |