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 6300ba88a8e1b784e52a6429d37fe7bd2183bc75
parent 4d62a7b6978b77d11704c12eb73cbfd3c2d03477
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu,  9 May 2024 12:13:03 +0200

set UC thread priority to highest

Diffstat:
Msource/mqLib/microq.cpp | 1+
Msource/xtLib/xt.cpp | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/source/mqLib/microq.cpp b/source/mqLib/microq.cpp @@ -35,6 +35,7 @@ namespace mqLib m_ucThread.reset(new std::thread([&]() { + dsp56k::ThreadTools::setCurrentThreadPriority(dsp56k::ThreadPriority::Highest); dsp56k::ThreadTools::setCurrentThreadName("MC68331"); while(!m_destroy) processUcThread(); diff --git a/source/xtLib/xt.cpp b/source/xtLib/xt.cpp @@ -22,6 +22,7 @@ namespace xt m_ucThread.reset(new std::thread([&]() { + dsp56k::ThreadTools::setCurrentThreadPriority(dsp56k::ThreadPriority::Highest); dsp56k::ThreadTools::setCurrentThreadName("MC68331"); while(!m_destroy) processUcThread();