2011-09-01 スレッドローカル cpp こうか? #if __cplusplus > 199711L #define THREAD_LOCAL thread_local #else #if defined( _MSC_VER ) #define THREAD_LOCAL __declspec(thread) #else #define THREAD_LOCAL __thread #endif THREAD_LOCAL int x = 42;