| 590 | } |
| 591 | |
| 592 | void bthread_stop_world() { |
| 593 | bthread::TaskControl* c = bthread::get_task_control(); |
| 594 | if (c != NULL) { |
| 595 | c->stop_and_join(); |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | int bthread_list_init(bthread_list_t* list, |
| 600 | unsigned /*size*/, |
nothing calls this directly
no test coverage detected