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

Function vm_object_reserv

freebsd/vm/vm_object.h:322–331  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

320}
321
322static __inline bool
323vm_object_reserv(vm_object_t object)
324{
325
326 if (object != NULL &&
327 (object->flags & (OBJ_COLORED | OBJ_FICTITIOUS)) == OBJ_COLORED) {
328 return (true);
329 }
330 return (false);
331}
332
333static __inline bool
334vm_object_mightbedirty(vm_object_t object)

Callers 3

vm_domainset_iter_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected