Merge pull request #525 from terrelln/covermt

Multithreaded COVER dictionary training
This commit is contained in:
Yann Collet
2017-01-30 10:15:33 -08:00
committed by GitHub
14 changed files with 165 additions and 25 deletions
+10
View File
@@ -9,6 +9,11 @@
#ifndef POOL_H
#define POOL_H
#if defined (__cplusplus)
extern "C" {
#endif
#include <stddef.h> /* size_t */
typedef struct POOL_ctx_s POOL_ctx;
@@ -43,4 +48,9 @@ typedef void (*POOL_add_function)(void *, POOL_function, void *);
*/
void POOL_add(void *ctx, POOL_function function, void *opaque);
#if defined (__cplusplus)
}
#endif
#endif