| 113 | } |
| 114 | |
| 115 | static int pthread_mutex_lock(pthread_mutex_t* const mutex) { |
| 116 | EnterCriticalSection(mutex); |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | static int pthread_mutex_unlock(pthread_mutex_t* const mutex) { |
| 121 | LeaveCriticalSection(mutex); |
no test coverage detected