| 1 | static inline bool CriticalSectionCreate(CRITSECT_HANDLE *CritSection) |
| 2 | { |
| 3 | #ifdef _WIN_ALL |
| 4 | InitializeCriticalSection(CritSection); |
| 5 | return true; |
| 6 | #elif defined(_UNIX) |
| 7 | return pthread_mutex_init(CritSection,NULL)==0; |
| 8 | #endif |
| 9 | } |
| 10 | |
| 11 | |
| 12 | static inline void CriticalSectionDelete(CRITSECT_HANDLE *CritSection) |