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

Function pthread_cond_broadcast

compat/os2threads.h:162–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160}
161
162static av_always_inline int pthread_cond_broadcast(pthread_cond_t *cond)
163{
164 while (!__atomic_cmpxchg32(&cond->wait_count, 0, 0))
165 pthread_cond_signal(cond);
166
167 return 0;
168}
169
170static av_always_inline int pthread_cond_timedwait(pthread_cond_t *cond,
171 pthread_mutex_t *mutex,

Callers 15

iec61883_callbackFunction · 0.50
iec61883_receive_taskFunction · 0.50
av_thread_message_flushFunction · 0.50
tq_sendFunction · 0.50
tq_receiveFunction · 0.50
tq_send_finishFunction · 0.50
tq_receive_finishFunction · 0.50
tq_chokeFunction · 0.50
async_unlockFunction · 0.50

Calls 1

pthread_cond_signalFunction · 0.70

Tested by

no test coverage detected