contrib/python-zstandard/zstd/common/threading.c
changeset 42937 69de49c4e39c
parent 37495 b1fb341d8a61
child 43994 de7838053207
equal deleted inserted replaced
42936:2da754532dd3 42937:69de49c4e39c
    12 
    12 
    13 /**
    13 /**
    14  * This file will hold wrapper for systems, which do not support pthreads
    14  * This file will hold wrapper for systems, which do not support pthreads
    15  */
    15  */
    16 
    16 
    17 /* create fake symbol to avoid empty trnaslation unit warning */
    17 /* create fake symbol to avoid empty translation unit warning */
    18 int g_ZSTD_threading_useles_symbol;
    18 int g_ZSTD_threading_useless_symbol;
    19 
    19 
    20 #if defined(ZSTD_MULTITHREAD) && defined(_WIN32)
    20 #if defined(ZSTD_MULTITHREAD) && defined(_WIN32)
    21 
    21 
    22 /**
    22 /**
    23  * Windows minimalist Pthread Wrapper, based on :
    23  * Windows minimalist Pthread Wrapper, based on :