From 5e77ebb317d5fd7209386ce8eb367682896d02b2 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 6 Jul 2022 17:12:24 +0100 Subject: [PATCH] Skip pthread_yield for now Signed-off-by: falkTX --- distrho/extra/Runner.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/distrho/extra/Runner.hpp b/distrho/extra/Runner.hpp index 0f9dddbe..f1ad970b 100644 --- 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; }