diff --git a/ChangeLog b/ChangeLog index 83e0f86f..c973fe42 100644 --- a/ChangeLog +++ b/ChangeLog @@ -26,7 +26,6 @@ Nedko Arnaudov * Correct jack_internal_client_load for wrapper layer. * In thread model, execute a dummy cycle to be sure thread has the correct properties (ensure thread creation is finished). * Correct jack_port_get_connections function (should return NULL when no connections). - * Start client RT thread only if a thread routine or callback has been setup with jack_set_process_callback or jack_set_process_thread. 2008-03-10 Stephane Letz diff --git a/common/JackClient.cpp b/common/JackClient.cpp index b2b7b6c6..ccbbb97d 100644 --- a/common/JackClient.cpp +++ b/common/JackClient.cpp @@ -250,7 +250,7 @@ int JackClient::Activate() #endif */ - if (fProcess || fThreadFun) + //if (fProcess || fThreadFun) if (StartThread() < 0) return -1; @@ -293,7 +293,7 @@ int JackClient::Deactivate() fThread->Kill(); #endif */ - if (fProcess || fThreadFun) + //if (fProcess || fThreadFun) fThread->Kill(); return result; }