From 2fcfc5e3966bcd4c9ac9059261a1b0e7092ea4bd Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Fri, 14 Aug 2020 16:59:37 +0200 Subject: [PATCH] multithreading is not yet ready... --- ChangeLog | 3 --- Jamulus.pro | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 546f9ba5..3ecdcac8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,9 +15,6 @@ - support MIDI control faders in headless build (#483) -- support multithreading in the server to better support multi-core CPUs, - use qmake "CONFIG+=multithreading" to enable the new multithreading (#339) - - option to set Mute Myself on with a command line argument (#495) - added a red message to indicate that Mute Myself is activated (#476) diff --git a/Jamulus.pro b/Jamulus.pro index b8170955..9a3b5c76 100755 --- a/Jamulus.pro +++ b/Jamulus.pro @@ -9,6 +9,7 @@ contains(CONFIG, "noupcasename") { # support multi-threading with OMP if requested contains(CONFIG, "multithreading") { message(Multithreading in the server is enabled.) + message(NOTE THAT THE MULTITHREADING IMPLEMENTATION IS STILL EXPERIMENTAL AND MAY NOT BE STABLE.) DEFINES += USE_MULTITHREADING QT += concurrent }