| 980 | |
| 981 | #if HAS_PTHREAD_MUTEX_TIMEDLOCK |
| 982 | BUTIL_FORCE_INLINE int pthread_mutex_timedlock_impl(pthread_mutex_t* mutex, |
| 983 | const struct timespec* abstime) { |
| 984 | return internal::pthread_mutex_lock_impl(mutex, abstime); |
| 985 | } |
| 986 | #endif // HAS_PTHREAD_MUTEX_TIMEDLOCK |
| 987 | |
| 988 | BUTIL_FORCE_INLINE int pthread_mutex_unlock_impl(pthread_mutex_t* mutex) { |
no test coverage detected