| 286 | } |
| 287 | |
| 288 | static int pthread_mutex_trylock(pthread_mutex_t *m) |
| 289 | { |
| 290 | return TryEnterCriticalSection(m) ? 0 : EBUSY; |
| 291 | } |
| 292 | |
| 293 | static int pthread_mutex_init(pthread_mutex_t *m, pthread_mutexattr_t *a) |
| 294 | { |
no outgoing calls
no test coverage detected