| 97 | |
| 98 | #ifdef _UNIX |
| 99 | static void cpthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) |
| 100 | { |
| 101 | int rc=pthread_cond_wait(cond,mutex); |
| 102 | if (rc!=0) |
| 103 | { |
| 104 | ErrHandler.GeneralErrMsg(L"\npthread_cond_wait error %d",rc); |
| 105 | ErrHandler.Exit(RARX_FATAL); |
| 106 | } |
| 107 | } |
| 108 | #endif |
| 109 | |
| 110 |
no test coverage detected