MCPcopy Create free account
hub / github.com/F-Stack/f-stack / thread_reap

Function thread_reap

freebsd/kern/kern_thread.c:667–677  ·  view source on GitHub ↗

* Reap zombies from local domain. */

Source from the content-addressed store, hash-verified

665 * Reap zombies from local domain.
666 */
667static void
668thread_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
679static void
680thread_reap_task_cb(void *arg __unused, int pending __unused)

Callers 2

thread_count_incFunction · 0.85
thread_waitFunction · 0.85

Calls 1

thread_reap_domainFunction · 0.85

Tested by

no test coverage detected