MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ZSTD_pthread_cond_destroy

Function ZSTD_pthread_cond_destroy

freebsd/contrib/zstd/lib/common/threading.c:111–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111int ZSTD_pthread_cond_destroy(ZSTD_pthread_cond_t* cond)
112{
113 if (!*cond)
114 return 0;
115 {
116 int const ret = pthread_cond_destroy(*cond);
117 ZSTD_free(*cond);
118 return ret;
119 }
120}
121
122#endif

Callers 5

POOL_freeFunction · 0.85
POOL_freeFunction · 0.85
ZSTDMT_serialState_freeFunction · 0.85
ZSTDMT_freeJobsTableFunction · 0.85
COVER_best_destroyFunction · 0.85

Calls 1

ZSTD_freeFunction · 0.85

Tested by

no test coverage detected