| 456 | } |
| 457 | |
| 458 | static void |
| 459 | kstack_release(void *arg, void **store, int cnt) |
| 460 | { |
| 461 | vm_offset_t ks; |
| 462 | int i; |
| 463 | |
| 464 | for (i = 0; i < cnt; i++) { |
| 465 | ks = (vm_offset_t)store[i]; |
| 466 | vm_thread_stack_dispose(ks, kstack_pages); |
| 467 | } |
| 468 | } |
| 469 | |
| 470 | static void |
| 471 | kstack_cache_init(void *null) |
nothing calls this directly
no test coverage detected