| 61 | } |
| 62 | |
| 63 | int 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 | |
| 70 | int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, |
| 71 | const struct timespec *abstime) |
no test coverage detected