MCPcopy Create free account
hub / github.com/pydata/numexpr / pthread_cond_destroy

Function pthread_cond_destroy

numexpr3/win32/pthread.c:102–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100}
101
102int pthread_cond_destroy(pthread_cond_t *cond)
103{
104 CloseHandle(cond->sema);
105 CloseHandle(cond->continue_broadcast);
106 DeleteCriticalSection(&cond->waiters_lock);
107 return 0;
108}
109
110int pthread_cond_wait(pthread_cond_t *cond, CRITICAL_SECTION *mutex)
111{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…