* vm_wait: * * Sleep until free pages are available for allocation in the * affinity domains of the obj. If obj is NULL, the domain set * for the calling thread is used. * Called in various places after failed memory allocations. */
| 3267 | * Called in various places after failed memory allocations. |
| 3268 | */ |
| 3269 | void |
| 3270 | vm_wait(vm_object_t obj) |
| 3271 | { |
| 3272 | (void)vm_wait_flags(obj, 0); |
| 3273 | } |
| 3274 | |
| 3275 | int |
| 3276 | vm_wait_intr(vm_object_t obj) |
no test coverage detected