| 124 | } |
| 125 | |
| 126 | static inline int strict_pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, |
| 127 | const struct timespec *abstime) |
| 128 | { |
| 129 | int ret = pthread_cond_timedwait(cond, mutex, abstime); |
| 130 | if (ret && ret != ETIMEDOUT) |
| 131 | ASSERT_PTHREAD_ABORT(pthread_cond_timedwait, ret); |
| 132 | return ret; |
| 133 | } |
| 134 | |
| 135 | static inline int strict_pthread_once(pthread_once_t *once_control, void (*init_routine)(void)) |
| 136 | { |
nothing calls this directly
no test coverage detected