| 308 | } |
| 309 | |
| 310 | void |
| 311 | vm_object_clear_flag(vm_object_t object, u_short bits) |
| 312 | { |
| 313 | |
| 314 | VM_OBJECT_ASSERT_WLOCKED(object); |
| 315 | object->flags &= ~bits; |
| 316 | } |
| 317 | |
| 318 | /* |
| 319 | * Sets the default memory attribute for the specified object. Pages |
no outgoing calls
no test coverage detected