EE
Size: a a a
EE
EE
t
t
Dv
f
f
K
EE
Dv
EE
EE
EE
EE
EE
t
#ifdef __cplusplus
# define DX_THREAD_LOCAL thread_local
#elif __STDC_VERSION__ >= 201112L
# define DX_THREAD_LOCAL _Thread_local
#elif defined(__GNUC__)
# define DX_THREAD_LOCAL __thread
#elif defined(_WIN32)
# define DX_THREAD_LOCAL __declspec(thread)
#else
# warning No known thread-local storage specifier
# define DX_THREAD_LOCAL
#endif
t
t
FO