| 1207 | } |
| 1208 | |
| 1209 | int bthread_mutex_lock_contended(bthread_mutex_t* m) { |
| 1210 | return bthread::mutex_lock_contended_impl(m, NULL); |
| 1211 | } |
| 1212 | |
| 1213 | static int bthread_mutex_lock_impl(bthread_mutex_t* __restrict m, |
| 1214 | const struct timespec* __restrict abstime) { |
no test coverage detected