Test that preprocessor define __EMSCRIPTEN_PTHREADS__ is actually present when building with pthreads enabled.

This commit is contained in:
Jukka Jylänki 2015-05-28 14:58:57 +03:00
Родитель fe15b39f30
Коммит 5399f2a318
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -6,6 +6,10 @@
#include <emscripten/threading.h>
#include <assert.h>
#if !defined(__EMSCRIPTEN_PTHREADS__) || __EMSCRIPTEN_PTHREADS__ != 1
#error __EMSCRIPTEN_PTHREADS__ should have been defined to be equal to 1 when building with pthreads support enabled!
#endif
#define NUM_THREADS 8
volatile unsigned char globalUchar = 0;