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

Function pthread_join

compat/os2threads.h:94–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94static av_always_inline int pthread_join(pthread_t thread, void **value_ptr)
95{
96 DosWaitThread(&thread.tid, DCWW_WAIT);
97
98 if (value_ptr)
99 *value_ptr = thread.result;
100
101 return 0;
102}
103
104static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex,
105 const pthread_mutexattr_t *attr)

Callers 11

iec61883_closeFunction · 0.50
async_closeFunction · 0.50
fifo_write_trailerFunction · 0.50
udp_closeFunction · 0.50
avpriv_slicethread_freeFunction · 0.50
mainFunction · 0.50
task_stopFunction · 0.50
ff_frame_thread_freeFunction · 0.50

Calls

no outgoing calls

Tested by 1

mainFunction · 0.40