Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TPF
jack2
Commits
05f87555
Commit
05f87555
authored
Mar 02, 2017
by
James Thomas
Browse files
Remove unused JackPosixSemaphore::Wait() function
This doesn't seem necessary since it is implmented below
parent
d9918c3d
Changes
1
Show whitespace changes
Inline
Side-by-side
posix/JackPosixSemaphore.cpp
View file @
05f87555
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment