MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / strict_pthread_cond_timedwait

Function strict_pthread_cond_timedwait

libavutil/thread.h:126–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126static 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
135static inline int strict_pthread_once(pthread_once_t *once_control, void (*init_routine)(void))
136{

Callers

nothing calls this directly

Calls 1

pthread_cond_timedwaitFunction · 0.50

Tested by

no test coverage detected