aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-09-20 19:58:01 -0700
committerChris Robinson <[email protected]>2018-09-20 19:58:01 -0700
commitcb8545346d227ba85a4a98c3897b5cdb1ea86d26 (patch)
tree8e014b38ec4815636ef2d4c70b6313eb2631d0a5 /OpenAL32
parent5c6b8eda4f4defc85faf76edb2772f6b340c7c1a (diff)
Always start the event thread with the context
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h3
-rw-r--r--OpenAL32/event.c53
2 files changed, 20 insertions, 36 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index f90108d6..f1bc4469 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -892,6 +892,9 @@ inline void UnlockEffectSlotList(ALCcontext *context)
{ almtx_unlock(&context->EffectSlotLock); }
+int EventThread(void *arg);
+
+
vector_al_string SearchDataFiles(const char *match, const char *subdir);
#ifdef __cplusplus
diff --git a/OpenAL32/event.c b/OpenAL32/event.c
index 12636489..b719c371 100644
--- a/OpenAL32/event.c
+++ b/OpenAL32/event.c
@@ -9,16 +9,12 @@
#include "ringbuffer.h"
-static int EventThread(void *arg)
+int EventThread(void *arg)
{
ALCcontext *context = arg;
+ bool quitnow = false;
- /* Clear all pending posts on the semaphore. */
- while(alsem_trywait(&context->EventSem) == althrd_success)
- {
- }
-
- while(1)
+ while(!quitnow)
{
ALbitfieldSOFT enabledevts;
AsyncEvent evt;
@@ -28,14 +24,17 @@ static int EventThread(void *arg)
alsem_wait(&context->EventSem);
continue;
}
- if(!evt.EnumType)
- break;
almtx_lock(&context->EventCbLock);
- enabledevts = ATOMIC_LOAD(&context->EnabledEvts, almemory_order_acquire);
- if(context->EventCb && (enabledevts&evt.EnumType) == evt.EnumType)
- context->EventCb(evt.Type, evt.ObjectId, evt.Param, (ALsizei)strlen(evt.Message),
- evt.Message, context->EventParam);
+ do {
+ quitnow = !evt.EnumType;
+ if(quitnow) break;
+
+ enabledevts = ATOMIC_LOAD(&context->EnabledEvts, almemory_order_acquire);
+ if(context->EventCb && (enabledevts&evt.EnumType) == evt.EnumType)
+ context->EventCb(evt.Type, evt.ObjectId, evt.Param, (ALsizei)strlen(evt.Message),
+ evt.Message, context->EventParam);
+ } while(ll_ringbuffer_read(context->AsyncEvents, (char*)&evt, 1) != 0);
almtx_unlock(&context->EventCbLock);
}
return 0;
@@ -46,7 +45,6 @@ AL_API void AL_APIENTRY alEventControlSOFT(ALsizei count, const ALenum *types, A
ALCcontext *context;
ALbitfieldSOFT enabledevts;
ALbitfieldSOFT flags = 0;
- bool isrunning;
ALsizei i;
context = GetContextRef();
@@ -77,10 +75,7 @@ AL_API void AL_APIENTRY alEventControlSOFT(ALsizei count, const ALenum *types, A
almtx_lock(&context->EventThrdLock);
if(enable)
{
- if(!context->AsyncEvents)
- context->AsyncEvents = ll_ringbuffer_create(63, sizeof(AsyncEvent), false);
enabledevts = ATOMIC_LOAD(&context->EnabledEvts, almemory_order_relaxed);
- isrunning = !!enabledevts;
while(ATOMIC_COMPARE_EXCHANGE_WEAK(&context->EnabledEvts, &enabledevts, enabledevts|flags,
almemory_order_acq_rel, almemory_order_acquire) == 0)
{
@@ -88,33 +83,19 @@ AL_API void AL_APIENTRY alEventControlSOFT(ALsizei count, const ALenum *types, A
* just try again.
*/
}
- if(!isrunning && flags)
- althrd_create(&context->EventThread, EventThread, context);
}
else
{
enabledevts = ATOMIC_LOAD(&context->EnabledEvts, almemory_order_relaxed);
- isrunning = !!enabledevts;
while(ATOMIC_COMPARE_EXCHANGE_WEAK(&context->EnabledEvts, &enabledevts, enabledevts&~flags,
almemory_order_acq_rel, almemory_order_acquire) == 0)
{
}
- if(isrunning && !(enabledevts&~flags))
- {
- static const AsyncEvent kill_evt = { 0 };
- while(ll_ringbuffer_write(context->AsyncEvents, (const char*)&kill_evt, 1) == 0)
- althrd_yield();
- alsem_post(&context->EventSem);
- althrd_join(context->EventThread, NULL);
- }
- else
- {
- /* Wait to ensure the event handler sees the changed flags before
- * returning.
- */
- almtx_lock(&context->EventCbLock);
- almtx_unlock(&context->EventCbLock);
- }
+ /* Wait to ensure the event handler sees the changed flags before
+ * returning.
+ */
+ almtx_lock(&context->EventCbLock);
+ almtx_unlock(&context->EventCbLock);
}
almtx_unlock(&context->EventThrdLock);