Home
last modified time | relevance | path

Searched refs:jobTable (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c894 static void ZSTDMT_freeJobsTable(ZSTDMT_jobDescription* jobTable, U32 nbJobs, ZSTD_customMem cMem) in ZSTDMT_freeJobsTable() argument
897 if (jobTable == NULL) return; in ZSTDMT_freeJobsTable()
899 ZSTD_pthread_mutex_destroy(&jobTable[jobNb].job_mutex); in ZSTDMT_freeJobsTable()
900 ZSTD_pthread_cond_destroy(&jobTable[jobNb].job_cond); in ZSTDMT_freeJobsTable()
902 ZSTD_customFree(jobTable, cMem); in ZSTDMT_freeJobsTable()
913 ZSTDMT_jobDescription* const jobTable = (ZSTDMT_jobDescription*) in ZSTDMT_createJobsTable() local
916 if (jobTable==NULL) return NULL; in ZSTDMT_createJobsTable()
919 initError |= ZSTD_pthread_mutex_init(&jobTable[jobNb].job_mutex, NULL); in ZSTDMT_createJobsTable()
920 initError |= ZSTD_pthread_cond_init(&jobTable[jobNb].job_cond, NULL); in ZSTDMT_createJobsTable()
923 ZSTDMT_freeJobsTable(jobTable, nbJobs, cMem); in ZSTDMT_createJobsTable()
[all …]