Browse Source

Cleanup

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2313 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.90
sletz 17 years ago
parent
commit
271995772b
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      windows/JackWinProcessSync.h

+ 0
- 4
windows/JackWinProcessSync.h View File

@@ -66,17 +66,13 @@ class JackWinProcessSync : public JackSyncInterface

bool TimedWait(long usec)
{
jack_log("JackWinProcessSync::Wait time out = %ld", usec);
DWORD res = WaitForSingleObject(fEvent, usec / 1000);
jack_log("JackWinProcessSync::Wait finished res = %ld", res == WAIT_OBJECT_0);
return (res == WAIT_OBJECT_0);
}

void Wait()
{
jack_log("JackWinProcessSync::Wait...");
WaitForSingleObject(fEvent, INFINITE);
jack_log("JackWinProcessSync::Wait finished");
}

void SignalAll()


Loading…
Cancel
Save