| 1292 | } |
| 1293 | |
| 1294 | static int pthread_cond_wait(pthread_cond_t *c, pthread_mutex_t *m) |
| 1295 | { |
| 1296 | pthread_testcancel(); |
| 1297 | SleepConditionVariableCS(c, m, INFINITE); |
| 1298 | return 0; |
| 1299 | } |
| 1300 | |
| 1301 | static int pthread_cond_destroy(pthread_cond_t *c) |
| 1302 | { |
nothing calls this directly
no test coverage detected