| 455 | } |
| 456 | |
| 457 | int bthread_id_error_verbose(bthread_id_t id, int error_code, |
| 458 | const char *location) { |
| 459 | return bthread_id_error2_verbose(id, error_code, std::string(), location); |
| 460 | } |
| 461 | |
| 462 | int bthread_id_about_to_destroy(bthread_id_t id) { |
| 463 | bthread::Id* const meta = address_resource(bthread::get_slot(id)); |
nothing calls this directly
no test coverage detected