* The object must be locked or thread private. */
| 289 | * The object must be locked or thread private. |
| 290 | */ |
| 291 | static __inline void |
| 292 | vm_object_set_flag(vm_object_t object, u_short bits) |
| 293 | { |
| 294 | |
| 295 | object->flags |= bits; |
| 296 | } |
| 297 | |
| 298 | /* |
| 299 | * Conditionally set the object's color, which (1) enables the allocation |
no outgoing calls
no test coverage detected