| 742 | } |
| 743 | |
| 744 | int bthread_id_list_reset2(bthread_id_list_t* list, |
| 745 | int error_code, |
| 746 | const std::string& error_text) { |
| 747 | if (list->impl != NULL) { |
| 748 | static_cast<bthread::IdList*>(list->impl)->apply( |
| 749 | bthread::IdResetter(error_code, error_text)); |
| 750 | } |
| 751 | return 0; |
| 752 | } |
| 753 | |
| 754 | int bthread_id_list_reset2_pthreadsafe(bthread_id_list_t* list, |
| 755 | int error_code, |
no test coverage detected