* Reap zombies from local domain. */
| 665 | * Reap zombies from local domain. |
| 666 | */ |
| 667 | static void |
| 668 | thread_reap(void) |
| 669 | { |
| 670 | struct thread_domain_data *tdd; |
| 671 | int domain; |
| 672 | |
| 673 | domain = PCPU_GET(domain); |
| 674 | tdd = &thread_domain_data[domain]; |
| 675 | |
| 676 | thread_reap_domain(tdd); |
| 677 | } |
| 678 | |
| 679 | static void |
| 680 | thread_reap_task_cb(void *arg __unused, int pending __unused) |
no test coverage detected