Browse Source

Fix JackAudioAdapter::Open.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2694 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.90
sletz 17 years ago
parent
commit
64e1ec08ff
2 changed files with 4 additions and 2 deletions
  1. +1
    -0
      common/JackAudioAdapter.cpp
  2. +3
    -2
      common/JackFifo.cpp

+ 1
- 0
common/JackAudioAdapter.cpp View File

@@ -178,6 +178,7 @@ namespace Jack

fail:
FreePorts();
return -1;
}

int JackAudioAdapter::Close()


+ 3
- 2
common/JackFifo.cpp View File

@@ -112,8 +112,9 @@ bool JackFifo::TimedWait(long usec)
if (fPoll.revents & POLLIN) {
return Wait();
} else {
jack_error("JackFifo::TimedWait name = %s usec = %ld revents %ld ", fName, usec, fPoll.revents);
return false;
jack_error("JackFifo::TimedWait name = %s usec = %ld err = %s", fName, usec, strerror(errno));
// Wait failure but we still continue...
return true;
}
}
#endif


Loading…
Cancel
Save