DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 5e77ebb317d5fd7209386ce8eb367682896d02b2
parent b63db742200341b91358c14a7290104cb97d5613
Author: falkTX <falktx@falktx.com>
Date:   Wed,  6 Jul 2022 17:11:57 +0100

Skip pthread_yield for now

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/extra/Runner.hpp | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/distrho/extra/Runner.hpp b/distrho/extra/Runner.hpp @@ -191,7 +191,8 @@ private: if (timeInterval != 0) d_msleep(timeInterval); - pthread_yield(); + // FIXME + // pthread_yield(); continue; }