| 689 | current->insert_tail(th); |
| 690 | } |
| 691 | void insert_list_before(thread* th) const { |
| 692 | current->insert_list_before(th); |
| 693 | } |
| 694 | void insert_list_before(thread_list& list) const { |
| 695 | current->insert_list_before(list.node); |
| 696 | list.node = nullptr; |
no outgoing calls
no test coverage detected