On Linux, inter-process synchronization primitive switched to POSIX semaphore.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@4007 0c269be4-1314-0410-8aa9-9f06e86f4224
This commit is contained in:
sletz 2010-05-07 15:56:04 +00:00
parent ecb4471edb
commit 6843fff536
2 changed files with 13 additions and 7 deletions

View File

@ -29,19 +29,20 @@ Arnold Krille
---------------------------
Jackdmp changes log
---------------------------
2010-05-016 Stephane Letz <letz@grame.fr>
2010-05-07 Stephane Letz <letz@grame.fr>
* Add tests to validate intclient.h API.
* On Linux, inter-process synchronization primitive switched to POSIX semaphore.
2010-04-16 Stephane Letz <letz@grame.fr>
* Make jack_connect/jack_disconnect wait for effective port connection/disconnection.
2010-04-07 Stephane Letz <letz@grame.fr>
* Remove call to exit in library code.
2010-03-26 Stephane Letz <letz@grame.fr>
* ffado-portname-sync.patch from ticket #163 applied.
@ -49,7 +50,7 @@ Arnold Krille
2010-03-24 Stephane Letz <letz@grame.fr>
* On Windows, now use TRE library for regexp (BSD license instead of GPL license).
2010-03-19 Stephane Letz <letz@grame.fr>
* Fix some file header to have library side code use LGPL.
@ -238,7 +239,7 @@ Arnold Krille
2009-10-20 Stephane Letz <letz@grame.fr>
* Add a string parameter to server ==> client notification, add a new JackInfoShutdownCallback type.
* CoreAudio backend now issue a JackInfoShutdownCallback when an unrecoverable error is detected (sampling rate change, stream configuration changeÉ)
* CoreAudio backend now issue a JackInfoShutdownCallback when an unrecoverable error is detected (sampling rate change, stream configuration change<EFBFBD>)
2009-10-17 Stephane Letz <letz@grame.fr>

View File

@ -49,8 +49,13 @@ namespace Jack {typedef JackPosixMutex JackMutex; }
namespace Jack { typedef JackPosixThread JackThread; }
/* __JackPlatformSynchro__ client activation */
/*
#include "JackFifo.h"
namespace Jack { typedef JackFifo JackSynchro; }
*/
#include "JackPosixSemaphore.h"
namespace Jack { typedef JackPosixSemaphore JackSynchro; }
/* __JackPlatformChannelTransaction__ */
#include "JackSocket.h"