| 236 | /* Wait on the condition variable forever */ |
| 237 | |
| 238 | int acl_pthread_cond_wait(acl_pthread_cond_t *cond, acl_pthread_mutex_t *mutex) |
| 239 | { |
| 240 | return acl_pthread_cond_timedwait(cond, mutex, NULL); |
| 241 | } |
| 242 | |
| 243 | #endif /* !ACL_HAS_PTHREAD */ |
no test coverage detected
searching dependent graphs…