Loading...
Searching...
No Matches
24# if __STDC_VERSION__ >= 201112 && !defined __STDC_NO_THREADS__
25# define thread_local _Thread_local
26# elif defined _WIN32 && ( \
30 defined __BORLANDC__ )
31# define thread_local __declspec(thread)
33# elif defined __GNUC__ || \
34 defined __SUNPRO_C || \
36# define thread_local __thread
38# error "Cannot define thread_local"