summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/swr
diff options
context:
space:
mode:
authorTim Rowley <timothy.o.rowley@intel.com>2017-03-22 18:55:13 -0500
committerTim Rowley <timothy.o.rowley@intel.com>2017-03-28 11:24:39 -0500
commit1c7224c85fddcbac64ee5a6595ec8608b4f00437 (patch)
tree17f252f37ff850064e760cbdb0f6c4b1f077ac3b /src/gallium/drivers/swr
parentaee5276375d79f5d73680d6038a1fd838894679a (diff)
swr: [rasterizer common] Use C++ thread_local keyword
Allows use of thread_local objects with constructors. Reviewed-by: George Kyriazis <george.kyriazis@intel.com>
Diffstat (limited to 'src/gallium/drivers/swr')
-rw-r--r--src/gallium/drivers/swr/rasterizer/common/os.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/common/os.h b/src/gallium/drivers/swr/rasterizer/common/os.h
index 28e7ff54f96..71c4da3a59a 100644
--- a/src/gallium/drivers/swr/rasterizer/common/os.h
+++ b/src/gallium/drivers/swr/rasterizer/common/os.h
@@ -47,7 +47,6 @@
#endif
#define OSALIGN(RWORD, WIDTH) __declspec(align(WIDTH)) RWORD
-#define THREAD __declspec(thread)
#define INLINE __forceinline
#define DEBUGBREAK __debugbreak()
@@ -108,7 +107,6 @@ typedef unsigned int DWORD;
#define MAX_PATH PATH_MAX
#define OSALIGN(RWORD, WIDTH) RWORD __attribute__((aligned(WIDTH)))
-#define THREAD __thread
#ifndef INLINE
#define INLINE __inline
#endif
@@ -242,6 +240,8 @@ pid_t gettid(void);
#endif
+#define THREAD thread_local
+
// Universal types
typedef uint8_t KILOBYTE[1024];
typedef KILOBYTE MEGABYTE[1024];