aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/winmm.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-27 14:05:56 -0800
committerChris Robinson <[email protected]>2018-11-27 14:05:56 -0800
commit89abbe8d94436376c1dc00f5af226a79fe3bc811 (patch)
tree97cab8cc06e92dc06329a50881965a34d528bf2c /Alc/backends/winmm.cpp
parentf26083e9edc6491f553aae951886d89b70288528 (diff)
Replace last uses of alsem_t with al::semaphore
Diffstat (limited to 'Alc/backends/winmm.cpp')
-rw-r--r--Alc/backends/winmm.cpp22
1 files changed, 8 insertions, 14 deletions
diff --git a/Alc/backends/winmm.cpp b/Alc/backends/winmm.cpp
index 2524ecc1..c88a43b6 100644
--- a/Alc/backends/winmm.cpp
+++ b/Alc/backends/winmm.cpp
@@ -122,7 +122,7 @@ void ProbeCaptureDevices(void)
struct ALCwinmmPlayback final : public ALCbackend {
std::atomic<ALuint> Writable{0u};
- alsem_t Sem;
+ al::semaphore Sem;
int Idx{0};
std::array<WAVEHDR,4> WaveBuffer;
@@ -160,7 +160,6 @@ void ALCwinmmPlayback_Construct(ALCwinmmPlayback *self, ALCdevice *device)
ALCbackend_Construct(STATIC_CAST(ALCbackend, self), device);
SET_VTABLE2(ALCwinmmPlayback, ALCbackend, self);
- alsem_init(&self->Sem, 0);
std::fill(self->WaveBuffer.begin(), self->WaveBuffer.end(), WAVEHDR{});
}
@@ -173,8 +172,6 @@ void ALCwinmmPlayback_Destruct(ALCwinmmPlayback *self)
al_free(self->WaveBuffer[0].lpData);
std::fill(self->WaveBuffer.begin(), self->WaveBuffer.end(), WAVEHDR{});
- alsem_destroy(&self->Sem);
-
ALCbackend_Destruct(STATIC_CAST(ALCbackend, self));
self->~ALCwinmmPlayback();
}
@@ -194,7 +191,7 @@ void CALLBACK ALCwinmmPlayback_waveOutProc(HWAVEOUT UNUSED(device), UINT msg,
auto self = reinterpret_cast<ALCwinmmPlayback*>(instance);
self->Writable.fetch_add(1, std::memory_order_acq_rel);
- alsem_post(&self->Sem);
+ self->Sem.post();
}
FORCE_ALIGN int ALCwinmmPlayback_mixerProc(ALCwinmmPlayback *self)
@@ -212,7 +209,7 @@ FORCE_ALIGN int ALCwinmmPlayback_mixerProc(ALCwinmmPlayback *self)
if(todo < 1)
{
ALCwinmmPlayback_unlock(self);
- alsem_wait(&self->Sem);
+ self->Sem.wait();
ALCwinmmPlayback_lock(self);
continue;
}
@@ -387,7 +384,7 @@ void ALCwinmmPlayback_stop(ALCwinmmPlayback *self)
self->mThread.join();
while(self->Writable.load(std::memory_order_acquire) < self->WaveBuffer.size())
- alsem_wait(&self->Sem);
+ self->Sem.wait();
std::for_each(self->WaveBuffer.begin(), self->WaveBuffer.end(),
[self](WAVEHDR &waveHdr) -> void
{ waveOutUnprepareHeader(self->OutHdl, &waveHdr, sizeof(WAVEHDR)); }
@@ -398,7 +395,7 @@ void ALCwinmmPlayback_stop(ALCwinmmPlayback *self)
struct ALCwinmmCapture final : public ALCbackend {
std::atomic<ALuint> Readable{0u};
- alsem_t Sem;
+ al::semaphore Sem;
int Idx{0};
std::array<WAVEHDR,4> WaveBuffer;
@@ -438,7 +435,6 @@ void ALCwinmmCapture_Construct(ALCwinmmCapture *self, ALCdevice *device)
ALCbackend_Construct(STATIC_CAST(ALCbackend, self), device);
SET_VTABLE2(ALCwinmmCapture, ALCbackend, self);
- alsem_init(&self->Sem, 0);
std::fill(self->WaveBuffer.begin(), self->WaveBuffer.end(), WAVEHDR{});
}
@@ -455,8 +451,6 @@ void ALCwinmmCapture_Destruct(ALCwinmmCapture *self)
ll_ringbuffer_free(self->Ring);
self->Ring = nullptr;
- alsem_destroy(&self->Sem);
-
ALCbackend_Destruct(STATIC_CAST(ALCbackend, self));
self->~ALCwinmmCapture();
}
@@ -476,7 +470,7 @@ void CALLBACK ALCwinmmCapture_waveInProc(HWAVEIN UNUSED(device), UINT msg,
auto self = reinterpret_cast<ALCwinmmCapture*>(instance);
self->Readable.fetch_add(1, std::memory_order_acq_rel);
- alsem_post(&self->Sem);
+ self->Sem.post();
}
int ALCwinmmCapture_captureProc(ALCwinmmCapture *self)
@@ -493,7 +487,7 @@ int ALCwinmmCapture_captureProc(ALCwinmmCapture *self)
if(todo < 1)
{
ALCwinmmCapture_unlock(self);
- alsem_wait(&self->Sem);
+ self->Sem.wait();
ALCwinmmCapture_lock(self);
continue;
}
@@ -639,7 +633,7 @@ void ALCwinmmCapture_stop(ALCwinmmCapture *self)
self->mKillNow.store(AL_TRUE, std::memory_order_release);
if(self->mThread.joinable())
{
- alsem_post(&self->Sem);
+ self->Sem.post();
self->mThread.join();
}