| 85 | } |
| 86 | |
| 87 | void* do_timedrdlock(void *arg) { |
| 88 | struct timespec t = { -2, 0 }; |
| 89 | EXPECT_EQ(ETIMEDOUT, bthread_rwlock_timedrdlock((bthread_rwlock_t*)arg, &t)); |
| 90 | return NULL; |
| 91 | } |
| 92 | |
| 93 | void* do_timedwrlock(void *arg) { |
| 94 | struct timespec t = { -2, 0 }; |
nothing calls this directly
no test coverage detected