gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 15755f03bc332388c9ecfd77c88ec8a69dcb43c3
parent 43605ebe63c1f4fc5e736e6d05f86b0409ace167
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun,  2 Feb 2025 12:47:43 +0100

use SPSC semaphore, we only have one producer/consumer

Diffstat:
Msource/nord/n2x/n2xLib/n2xdsp.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/nord/n2x/n2xLib/n2xdsp.h b/source/nord/n2x/n2xLib/n2xdsp.h @@ -67,7 +67,7 @@ namespace n2x std::unique_ptr<dsp56k::DSPThread> m_thread; - baseLib::Semaphore m_triggerInterruptDone; + dsp56k::SpscSemaphore m_triggerInterruptDone; uint32_t m_irqInterruptDone = 0; hwLib::HaltDSP m_haltDSP;