| 142 | } |
| 143 | |
| 144 | static av_always_inline int pthread_cond_destroy(pthread_cond_t *cond) |
| 145 | { |
| 146 | DosCloseEventSem(cond->event_sem); |
| 147 | DosCloseEventSem(cond->ack_sem); |
| 148 | |
| 149 | return 0; |
| 150 | } |
| 151 | |
| 152 | static av_always_inline int pthread_cond_signal(pthread_cond_t *cond) |
| 153 | { |
no outgoing calls
no test coverage detected