| 357 | void vm_object_busy_wait(vm_object_t object, const char *wmesg); |
| 358 | |
| 359 | static inline bool |
| 360 | vm_object_busied(vm_object_t object) |
| 361 | { |
| 362 | |
| 363 | return (blockcount_read(&object->busy) != 0); |
| 364 | } |
| 365 | #define VM_OBJECT_ASSERT_BUSY(object) MPASS(vm_object_busied((object))) |
| 366 | |
| 367 | void umtx_shm_object_init(vm_object_t object); |
no test coverage detected