MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / mutexDestroy

Function mutexDestroy

src/library/common/mutex.c:35–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33}
34
35int
36mutexDestroy(mutex_t *_mutex)
37{
38 HANDLE mutex = (HANDLE)_mutex;
39
40 if (CloseHandle(mutex) == FALSE) {
41 /* Bad mutex, etc. */
42 return 1;
43 }
44 return 0;
45}
46
47int
48mutexLock(mutex_t *_mutex)

Callers 6

destroyStorageCacheFunction · 0.85
scimage.cFile · 0.85
decomposeEventsTeardownFunction · 0.85
~clblasAtomicCounterMethod · 0.85
releaseMallocTraceFunction · 0.85
destroyKernelCacheFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected