Browse Source

Correct JackBasePosixMutex::Trylock.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@4533 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.9.8
sletz 13 years ago
parent
commit
192575d038
3 changed files with 5 additions and 3 deletions
  1. +4
    -0
      ChangeLog
  2. +1
    -2
      macosx/coremidi/JackCoreMidiDriver.cpp
  3. +0
    -1
      posix/JackPosixMutex.h

+ 4
- 0
ChangeLog View File

@@ -35,6 +35,10 @@ Chris Caudle
Jackdmp changes log
---------------------------

2011-06-28 Stephane Letz <letz@grame.fr>

* Correct JackBasePosixMutex::Trylock.

2011-06-26 Stephane Letz <letz@grame.fr>

* More robust code in synchronization primitives and in JackMessageBuffer.


+ 1
- 2
macosx/coremidi/JackCoreMidiDriver.cpp View File

@@ -275,7 +275,6 @@ JackCoreMidiDriver::Open(bool capturing, bool playing, int in_channels,
return -1;
}
char *client_name = fClientControl.fName;
printf("JackCoreMidiDriver::Open client_name %s\n",client_name);

// Allocate and connect physical inputs
potential_pi_count = MIDIGetNumberOfSources();
@@ -673,7 +672,7 @@ extern "C" {
}
}

// singleton kind of driver
// singleton kind of driver
if (!driver) {
driver = new Jack::JackCoreMidiDriver("system_midi", "coremidi", engine, table);
if (driver->Open(1, 1, virtual_in, virtual_out, false, "in", "out", 0, 0) == 0) {


+ 0
- 1
posix/JackPosixMutex.h View File

@@ -84,7 +84,6 @@ class JackBasePosixMutex
fOwner = current_thread;
return true;
} else {
jack_error("JackBasePosixMutex::Trylock res = %d", res);
return false;
}
} else {


Loading…
Cancel
Save