Browse Source

Correct debug target on Windows.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@4726 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.9.9.5
sletz 13 years ago
parent
commit
7f6ef9f644
4 changed files with 14 additions and 2 deletions
  1. +4
    -0
      common/JackDebugClient.cpp
  2. +2
    -2
      windows/jackd.workspace
  3. +4
    -0
      windows/libjack.cbp
  4. +4
    -0
      windows/libjackserver.cbp

+ 4
- 0
common/JackDebugClient.cpp View File

@@ -115,7 +115,11 @@ int JackDebugClient::Close()

void JackDebugClient::CheckClient(const char* function_name) const
{
#ifdef WIN32
*fStream << "CheckClient : " << function_name << ", calling thread : " << GetCurrentThread() << endl;
#else
*fStream << "CheckClient : " << function_name << ", calling thread : " << pthread_self() << endl;
#endif

if (fIsClosed > 0) {
*fStream << "!!! ERROR !!! : Accessing a client '" << fClientName << "' already closed " << "from " << function_name << endl;


+ 2
- 2
windows/jackd.workspace View File

@@ -3,7 +3,7 @@
<Workspace title="jack">
<Project filename="libjack.cbp" />
<Project filename="libjacknet.cbp" />
<Project filename="libjackserver.cbp" active="1" />
<Project filename="libjackserver.cbp" />
<Project filename="jack_portaudio.cbp" />
<Project filename="jack_netdriver.cbp" />
<Project filename="jack_netonedriver.cbp" />
@@ -13,7 +13,7 @@
<Project filename="jack_load.cbp" />
<Project filename="jack_unload.cbp" />
<Project filename="jack_lsp.cbp" />
<Project filename="jack_latent_client.cbp" />
<Project filename="jack_latent_client.cbp" active="1" />
<Project filename="jack_metro.cbp" />
<Project filename="jack_connect.cbp" />
<Project filename="jack_disconnect.cbp" />


+ 4
- 0
windows/libjack.cbp View File

@@ -304,6 +304,10 @@
<Unit filename="..\common\JackAudioPort.cpp" />
<Unit filename="..\common\JackClient.cpp" />
<Unit filename="..\common\JackConnectionManager.cpp" />
<Unit filename="..\common\JackDebugClient.cpp">
<Option target="Win32 Debug 64bits" />
<Option target="Win32 Debug 32bits" />
</Unit>
<Unit filename="..\common\JackEngineControl.cpp" />
<Unit filename="..\common\JackEngineProfiling.cpp">
<Option target="Win32 Profiling" />


+ 4
- 0
windows/libjackserver.cbp View File

@@ -251,6 +251,10 @@
<Unit filename="..\common\JackClient.cpp" />
<Unit filename="..\common\JackConnectionManager.cpp" />
<Unit filename="..\common\JackControlAPI.cpp" />
<Unit filename="..\common\JackDebugClient.cpp">
<Option target="Win32 Debug 64bits" />
<Option target="Win32 Debug 32bits" />
</Unit>
<Unit filename="..\common\JackDriver.cpp" />
<Unit filename="..\common\JackDriverLoader.cpp" />
<Unit filename="..\common\JackEngine.cpp" />


Loading…
Cancel
Save