MCPcopy Create free account
hub / github.com/ZDoom/Raze / pthread_join

Function pthread_join

libraries/webp/src/utils/thread_utils.c:98–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98static int pthread_join(pthread_t thread, void** value_ptr) {
99 (void)value_ptr;
100 return (WaitForSingleObject(thread, INFINITE) != WAIT_OBJECT_0 ||
101 CloseHandle(thread) == 0);
102}
103
104// Mutex
105static int pthread_mutex_init(pthread_mutex_t* const mutex, void* mutexattr) {

Callers 2

EndFunction · 0.85
Thread_Wait_CloseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected