diff options
-rw-r--r-- | sys/vm/vm_object.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h index c01c638..475ec5b 100644 --- a/sys/vm/vm_object.h +++ b/sys/vm/vm_object.h @@ -212,8 +212,6 @@ extern struct vm_object kmem_object_store; rw_init_flags(&(object)->lock, (name), RW_DUPOK) #define VM_OBJECT_LOCKED(object) \ rw_wowned(&(object)->lock) -#define VM_OBJECT_LOCKPTR(object) \ - (&(object)->lock) #define VM_OBJECT_SLEEP(wchan, object, pri, wmesg, timo) \ rw_sleep((wchan), &(object)->lock, (pri), (wmesg), (timo)) #define VM_OBJECT_TRYLOCK(object) \ |