From 723755788d645a04d7191dc631807660ce0125cb Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 30 Jun 2011 18:10:04 -0700 Subject: Rename Suspend/ProcessContext since they are locking a mutex --- Alc/ALu.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Alc/ALu.c') diff --git a/Alc/ALu.c b/Alc/ALu.c index 0f88d2e3..023ed3f9 100644 --- a/Alc/ALu.c +++ b/Alc/ALu.c @@ -972,7 +972,7 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) /* Clear mixing buffer */ memset(device->DryBuffer, 0, SamplesToDo*MAXCHANNELS*sizeof(ALfloat)); - SuspendContext(NULL); + LockContext(NULL); ctx = device->Contexts; ctx_end = ctx + device->NumContexts; while(ctx != ctx_end) @@ -1024,7 +1024,7 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) ctx++; } - ProcessContext(NULL); + UnlockContext(NULL); //Post processing loop for(i = 0;i < SamplesToDo;i++) @@ -1075,7 +1075,7 @@ ALvoid aluHandleDisconnect(ALCdevice *device) { ALuint i; - SuspendContext(NULL); + LockContext(NULL); for(i = 0;i < device->NumContexts;i++) { ALCcontext *Context = device->Contexts[i]; @@ -1096,5 +1096,5 @@ ALvoid aluHandleDisconnect(ALCdevice *device) } device->Connected = ALC_FALSE; - ProcessContext(NULL); + UnlockContext(NULL); } -- cgit v1.2.3