diff options
author | Emil Velikov <[email protected]> | 2015-03-05 15:07:51 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-03-06 16:46:17 +0000 |
commit | 6cee785c69a5c8d2d32b6807f9c502117f5a74b0 (patch) | |
tree | 1359974cc2d2e3dd0da4ec7898f1f153bc3557d6 /src/egl/main/eglscreen.c | |
parent | bfb4db83b618d57fcc5f0c9e9fdb3a7ff33d07f3 (diff) |
egl/main: use c11/threads' mutex directly
Remove the inline wrappers/abstraction layer.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl/main/eglscreen.c')
-rw-r--r-- | src/egl/main/eglscreen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/egl/main/eglscreen.c b/src/egl/main/eglscreen.c index b8f2b39c7b9..42ac621fcd9 100644 --- a/src/egl/main/eglscreen.c +++ b/src/egl/main/eglscreen.c @@ -44,20 +44,20 @@ #include <assert.h> #include <stdlib.h> #include <string.h> +#include "c11/threads.h" #include "egldisplay.h" #include "eglcurrent.h" #include "eglmode.h" #include "eglsurface.h" #include "eglscreen.h" -#include "eglmutex.h" #ifdef EGL_MESA_screen_surface /* ugh, no atomic op? */ -static _EGLMutex _eglNextScreenHandleMutex = _EGL_MUTEX_INITIALIZER; +static mtx_t _eglNextScreenHandleMutex = _MTX_INITIALIZER_NP; static EGLScreenMESA _eglNextScreenHandle = 1; @@ -70,10 +70,10 @@ _eglAllocScreenHandle(void) { EGLScreenMESA s; - _eglLockMutex(&_eglNextScreenHandleMutex); + mtx_lock(&_eglNextScreenHandleMutex); s = _eglNextScreenHandle; _eglNextScreenHandle += _EGL_SCREEN_MAX_MODES; - _eglUnlockMutex(&_eglNextScreenHandleMutex); + mtx_unlock(&_eglNextScreenHandleMutex); return s; } |