Remove unused JackPosixSemaphore::Wait() function

This doesn't seem necessary since it is implmented below
This commit is contained in:
James Thomas 2017-03-02 14:09:08 +00:00
parent d9918c3d29
commit 05f87555df
1 changed files with 0 additions and 17 deletions

View File

@ -81,23 +81,6 @@ bool JackPosixSemaphore::SignalAll()
return (res == 0);
}
/*
bool JackPosixSemaphore::Wait()
{
int res;
if (!fSemaphore) {
jack_error("JackPosixSemaphore::Wait name = %s already deallocated!!", fName);
return false;
}
if ((res = sem_wait(fSemaphore)) != 0) {
jack_error("JackPosixSemaphore::Wait name = %s err = %s", fName, strerror(errno));
}
return (res == 0);
}
*/
bool JackPosixSemaphore::Wait()
{
int res;