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
+3 -3
View File
@@ -12,10 +12,10 @@
*/
/**
* This file will hold wrapper for systems, which do not support Pthreads
* This file will hold wrapper for systems, which do not support pthreads
*/
#if defined(ZSTD_PTHREAD) && defined(_WIN32)
#if defined(ZSTD_MULTITHREAD) && defined(_WIN32)
/**
* Windows minimalist Pthread Wrapper, based on :
@@ -70,4 +70,4 @@ int _pthread_join(pthread_t * thread, void **value_ptr)
}
}
#endif
#endif /* ZSTD_MULTITHREAD */