MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_object_busied

Function vm_object_busied

freebsd/vm/vm_object.h:359–364  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

357void vm_object_busy_wait(vm_object_t object, const char *wmesg);
358
359static inline bool
360vm_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
367void umtx_shm_object_init(vm_object_t object);

Callers 5

_vm_page_busy_sleepFunction · 0.85
vm_page_trysbusyFunction · 0.85
vm_page_tryxbusyFunction · 0.85
vm_page_wireFunction · 0.85
vm_object_zdtorFunction · 0.85

Calls 1

blockcount_readFunction · 0.85

Tested by

no test coverage detected