| 652 | } |
| 653 | |
| 654 | void bthread_id_list_destroy(bthread_id_list_t* list) { |
| 655 | delete static_cast<bthread::IdList*>(list->impl); |
| 656 | list->impl = NULL; |
| 657 | } |
| 658 | |
| 659 | int bthread_id_list_add(bthread_id_list_t* list, bthread_id_t id) { |
| 660 | if (list->impl == NULL) { |
no outgoing calls