| 30 | |
| 31 | |
| 32 | static inline void CriticalSectionEnd(CRITSECT_HANDLE *CritSection) |
| 33 | { |
| 34 | #ifdef _WIN_ALL |
| 35 | LeaveCriticalSection(CritSection); |
| 36 | #elif defined(_UNIX) |
| 37 | pthread_mutex_unlock(CritSection); |
| 38 | #endif |
| 39 | } |
| 40 | |
| 41 | |
| 42 | static THREAD_HANDLE ThreadCreate(NATIVE_THREAD_PTR Proc,void *Data) |
no outgoing calls
no test coverage detected