| 344 | } |
| 345 | |
| 346 | int bthread_rwlock_timedrdlock(bthread_rwlock_t* __restrict rwlock, |
| 347 | const struct timespec* __restrict abstime) { |
| 348 | return bthread::rwlock_timedrdlock(rwlock, abstime); |
| 349 | } |
| 350 | |
| 351 | int bthread_rwlock_wrlock(bthread_rwlock_t* rwlock) { |
| 352 | return bthread::rwlock_wrlock(rwlock); |