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

Function ZSTD_createThreadPool

freebsd/contrib/zstd/lib/common/pool.c:108–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106}
107
108POOL_ctx* ZSTD_createThreadPool(size_t numThreads) {
109 return POOL_create (numThreads, 0);
110}
111
112POOL_ctx* POOL_create(size_t numThreads, size_t queueSize) {
113 return POOL_create_advanced(numThreads, queueSize, ZSTD_defaultCMem);

Callers 1

mainFunction · 0.85

Calls 1

POOL_createFunction · 0.70

Tested by

no test coverage detected