| 10 | |
| 11 | |
| 12 | static inline void CriticalSectionDelete(CRITSECT_HANDLE *CritSection) |
| 13 | { |
| 14 | #ifdef _WIN_ALL |
| 15 | DeleteCriticalSection(CritSection); |
| 16 | #elif defined(_UNIX) |
| 17 | pthread_mutex_destroy(CritSection); |
| 18 | #endif |
| 19 | } |
| 20 | |
| 21 | |
| 22 | static inline void CriticalSectionStart(CRITSECT_HANDLE *CritSection) |