| 123 | } |
| 124 | |
| 125 | static int pthread_mutex_destroy(pthread_mutex_t* const mutex) { |
| 126 | DeleteCriticalSection(mutex); |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | // Condition |
| 131 | static int pthread_cond_destroy(pthread_cond_t* const condition) { |
no test coverage detected