diff options
author | Emil Velikov <[email protected]> | 2015-03-06 17:07:40 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-03-06 17:07:40 +0000 |
commit | 56ede80940751bfcdaf26e9c23e439d37ef0e96b (patch) | |
tree | acb862412e11b809c5349c3fa66f541b0d17554e /src/egl/main/egldisplay.h | |
parent | eb14d28e6db25eeecc89faf51837c92cc3dafbed (diff) |
Revert "egl/main: use c11/threads' mutex directly"
This reverts commit 6cee785c69a5c8d2d32b6807f9c502117f5a74b0.
Not meant to go in yet. Lacking review.
Diffstat (limited to 'src/egl/main/egldisplay.h')
-rw-r--r-- | src/egl/main/egldisplay.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index 5a845d89962..9c3c8c7cf16 100644 --- a/src/egl/main/egldisplay.h +++ b/src/egl/main/egldisplay.h @@ -32,10 +32,10 @@ #define EGLDISPLAY_INCLUDED #include "c99_compat.h" -#include "c11/threads.h" #include "egltypedefs.h" #include "egldefines.h" +#include "eglmutex.h" #include "eglarray.h" @@ -132,7 +132,7 @@ struct _egl_display /* used to link displays */ _EGLDisplay *Next; - mtx_t Mutex; + _EGLMutex Mutex; _EGLPlatformType Platform; /**< The type of the platform display */ void *PlatformDisplay; /**< A pointer to the platform display */ |