1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-28 00:01:53 +03:00

changed MT enabling macro to ZSTD_MULTITHREAD

This commit is contained in:
Yann Collet
2017-01-19 14:05:07 -08:00
parent f22adae984
commit 0f984d94c4
5 changed files with 16 additions and 16 deletions

View File

@ -18,7 +18,7 @@
extern "C" {
#endif
#if defined(ZSTD_PTHREAD) && defined(_WIN32)
#if defined(ZSTD_MULTITHREAD) && defined(_WIN32)
/**
* Windows minimalist Pthread Wrapper, based on :
@ -73,11 +73,11 @@ int _pthread_join(pthread_t* thread, void** value_ptr);
*/
#elif defined(ZSTD_PTHREAD) /* posix assumed ; need a better detection mathod */
#elif defined(ZSTD_MULTITHREAD) /* posix assumed ; need a better detection mathod */
/* === POSIX Systems === */
# include <pthread.h>
#else /* ZSTD_PTHREAD not defined */
#else /* ZSTD_MULTITHREAD not defined */
/* No multithreading support */
#define pthread_mutex_t int /* #define rather than typedef, as sometimes pthread support is implicit, resulting in duplicated symbols */
@ -95,7 +95,7 @@ int _pthread_join(pthread_t* thread, void** value_ptr);
/* do not use pthread_t */
#endif /* ZSTD_PTHREAD */
#endif /* ZSTD_MULTITHREAD */
#if defined (__cplusplus)
}