summaryrefslogtreecommitdiffstats
path: root/src/egl/main/eglcurrent.c
diff options
context:
space:
mode:
authorChad Versace <chad.versace@linux.intel.com>2013-10-11 12:50:21 -0700
committerChad Versace <chad.versace@linux.intel.com>2013-11-26 12:50:30 -0800
commit97851145bc74f4bda93dff4e6bb3cbc4789ab23a (patch)
tree7c63852580920a597025fc98e219737733c376cf /src/egl/main/eglcurrent.c
parent3c58d4c700bc1d0a0d56c26645e900201b7f249e (diff)
downloadexternal_mesa3d-97851145bc74f4bda93dff4e6bb3cbc4789ab23a.zip
external_mesa3d-97851145bc74f4bda93dff4e6bb3cbc4789ab23a.tar.gz
external_mesa3d-97851145bc74f4bda93dff4e6bb3cbc4789ab23a.tar.bz2
egl: Kill macro _EGL_DECLARE_MUTEX
Replace all occurences of the macro with its expansion. It seems that the macro intended to provide cross-platform static mutex intialization. However, it had the same definition in all pre-processor paths: #define _EGL_DECLARE_MUTEX(m) _EGLMutex m = _EGL_MUTEX_INITIALIZER Therefore this abstraction obscured rather than helped. Signed-off-by: Chad Versace <chad.versace@linux.intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/egl/main/eglcurrent.c')
-rw-r--r--src/egl/main/eglcurrent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglcurrent.c b/src/egl/main/eglcurrent.c
index 5b09a48..fcb732d 100644
--- a/src/egl/main/eglcurrent.c
+++ b/src/egl/main/eglcurrent.c
@@ -45,7 +45,7 @@ static _EGLThreadInfo dummy_thread = _EGL_THREAD_INFO_INITIALIZER;
#if HAVE_PTHREAD
#include <pthread.h>
-static _EGL_DECLARE_MUTEX(_egl_TSDMutex);
+static _EGLMutex _egl_TSDMutex = _EGL_MUTEX_INITIALIZER;
static EGLBoolean _egl_TSDInitialized;
static pthread_key_t _egl_TSD;
static void (*_egl_FreeTSD)(_EGLThreadInfo *);