| 1203 | } |
| 1204 | |
| 1205 | int bthread_mutex_trylock(bthread_mutex_t* m) { |
| 1206 | return bthread::mutex_trylock_impl(m); |
| 1207 | } |
| 1208 | |
| 1209 | int bthread_mutex_lock_contended(bthread_mutex_t* m) { |
| 1210 | return bthread::mutex_lock_contended_impl(m, NULL); |
no test coverage detected