diff options
author | Chris Robinson <[email protected]> | 2018-03-03 13:42:37 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-03-03 13:42:37 -0800 |
commit | 4e6c758daf1849741712eaf451f392264fd49244 (patch) | |
tree | 7db357344dac8cf7f90005ad5a5378443adf192c /OpenAL32/Include/alMain.h | |
parent | 4bd02eada65a9c9140c0c62524692038165e9a31 (diff) |
Use a plain mutex for the property lock
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index b21b76a3..6d6d661f 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -26,7 +26,6 @@ #include "static_assert.h" #include "align.h" #include "atomic.h" -#include "uintmap.h" #include "vector.h" #include "alstring.h" #include "almalloc.h" @@ -651,7 +650,7 @@ struct ALCcontext_struct { ATOMIC_FLAG PropsClean; ATOMIC(ALenum) DeferUpdates; - RWLock PropLock; + almtx_t PropLock; /* Counter for the pre-mixing updates, in 31.1 fixed point (lowest bit * indicates if updates are currently happening). |