MCPcopy Create free account
hub / github.com/git/git / pthread_cond_wait

Function pthread_cond_wait

compat/win32/pthread.c:63–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
64{
65 if (SleepConditionVariableCS(cond, mutex, INFINITE) == 0)
66 return err_win_to_posix(GetLastError());
67 return 0;
68}
69
70int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
71 const struct timespec *abstime)

Callers 9

fsm_listen__loopFunction · 0.85
add_workFunction · 0.85
get_workFunction · 0.85
wait_allFunction · 0.85
threaded_find_deltasFunction · 0.85
ll_find_deltasFunction · 0.85
ll_find_deltas_by_regionFunction · 0.85

Calls 1

err_win_to_posixFunction · 0.85

Tested by

no test coverage detected