Lines Matching defs:itd
629 struct thread *itd, *ntd;
642 itd = (struct thread *)atomic_swap_ptr((uintptr_t *)&tdd->tdd_zombies,
644 if (itd == NULL)
658 while (itd != NULL) {
659 ntd = itd->td_zombie;
660 EVENTHANDLER_DIRECT_INVOKE(thread_dtor, itd);
662 tidbatch_add(&tidbatch, itd);
663 credbatch_add(&credbatch, itd);
664 limbatch_add(&limbatch, itd);
665 tdcountbatch_add(&tdcountbatch, itd);
667 thread_free_batched(itd);
674 itd = ntd;