| 698 | } |
| 699 | |
| 700 | int bthread_id_create2_ranged( |
| 701 | bthread_id_t* id, void* data, |
| 702 | int (*on_error)(bthread_id_t, void*, int, const std::string&), |
| 703 | int range) { |
| 704 | return bthread::id_create_ranged_impl( |
| 705 | id, data, NULL, |
| 706 | (on_error ? on_error : bthread::default_bthread_id_on_error2), range); |
| 707 | } |
| 708 | |
| 709 | int bthread_id_error2_verbose(bthread_id_t id, int error_code, |
| 710 | const std::string& error_text, |
nothing calls this directly
no test coverage detected