Mac OSX: use __thread for thread-local storage

This commit is contained in:
Andreas Schroeder 2014-04-29 00:54:33 +02:00
parent 64cfab5b46
commit e7f0efa56d
2 changed files with 4 additions and 0 deletions

View file

@ -8,6 +8,8 @@ __forceinline void SM_Sleep()
#ifdef _WIN32
__declspec(thread)
#elif __APPLE__
__thread
#else
thread_local
#endif

View file

@ -3,6 +3,8 @@
#ifdef _WIN32
__declspec(thread)
#elif __APPLE__
__thread
#else
thread_local
#endif