From ff45b3c59fe02d7d3b7bf97731e74e4faa618c5f Mon Sep 17 00:00:00 2001 From: sletz Date: Tue, 11 Mar 2008 22:47:43 +0000 Subject: [PATCH] Revert last change git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1950 0c269be4-1314-0410-8aa9-9f06e86f4224 --- ChangeLog | 1 - common/JackClient.cpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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; }