The __thread keyword is a gcc thing, not a linux thing

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@893 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2008-05-30 19:34:59 +00:00
parent 4ad3ea8188
commit f45b103871
+1 -1
View File
@@ -23,7 +23,7 @@
#ifdef _MSC_VER
# define THREAD_LOCAL __declspec(thread)
# define HAVE_TLS 1
#elif defined __linux
#elif defined __GNUC__
# define THREAD_LOCAL __thread
# define HAVE_TLS 1
#else