aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/event.c
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32/event.c')
-rw-r--r--OpenAL32/event.c53
1 files changed, 17 insertions, 36 deletions
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);