blob: c0cd9fcee4aae4f205fe36084ff7133229bc8178 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef ___PERTHREAD_H__
#define ___PERTHREAD_H__
#if 0 && (defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__ && !defined __STDC_NO_THREADS__)
#define THREAD_LOCAL static _Thread_local
#else
#define THREAD_LOCAL static
#endif
#endif
|