Browse Source

Revert last change

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1950 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.71
sletz 17 years ago
parent
commit
ff45b3c59f
2 changed files with 2 additions and 3 deletions
  1. +0
    -1
      ChangeLog
  2. +2
    -2
      common/JackClient.cpp

+ 0
- 1
ChangeLog View File

@@ -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 <letz@grame.fr>


+ 2
- 2
common/JackClient.cpp View File

@@ -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;
}


Loading…
Cancel
Save