Browse Source

Correct JackMachSemaphore.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@4612 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.9.8
sletz 13 years ago
parent
commit
c35b809fd1
2 changed files with 2 additions and 4 deletions
  1. +0
    -2
      macosx/JackMachSemaphore.cpp
  2. +2
    -2
      macosx/JackMachSemaphore.h

+ 0
- 2
macosx/JackMachSemaphore.cpp View File

@@ -26,8 +26,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
namespace Jack
{

mach_port_t JackMachSemaphore::fBootPort = 0;

void JackMachSemaphore::BuildName(const char* client_name, const char* server_name, char* res, int size)
{
char ext_client_name[JACK_CLIENT_NAME_SIZE + 1];


+ 2
- 2
macosx/JackMachSemaphore.h View File

@@ -39,7 +39,7 @@ class SERVER_EXPORT JackMachSemaphore : public detail::JackSynchro
private:

semaphore_t fSemaphore;
static mach_port_t fBootPort;
mach_port_t fBootPort;

protected:

@@ -47,7 +47,7 @@ class SERVER_EXPORT JackMachSemaphore : public detail::JackSynchro

public:

JackMachSemaphore():JackSynchro(), fSemaphore(0)
JackMachSemaphore():JackSynchro(), fSemaphore(0), fBootPort(0)
{}

bool Signal();


Loading…
Cancel
Save