| 770 | } |
| 771 | |
| 772 | void |
| 773 | thread_free(struct thread *td) |
| 774 | { |
| 775 | lwpid_t tid; |
| 776 | |
| 777 | EVENTHANDLER_DIRECT_INVOKE(thread_dtor, td); |
| 778 | tid = td->td_tid; |
| 779 | thread_free_batched(td); |
| 780 | tid_free(tid); |
| 781 | thread_count_dec(); |
| 782 | } |
| 783 | |
| 784 | void |
| 785 | thread_cow_get_proc(struct thread *newtd, struct proc *p) |
no test coverage detected