MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / CriticalSectionDelete

Function CriticalSectionDelete

Libraries/unrar/threadmisc.cpp:12–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10
11
12static 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
22static inline void CriticalSectionStart(CRITSECT_HANDLE *CritSection)

Callers 1

~ThreadPoolMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected