Conversation
This line (from a 9-year-old commit!) causes `alsa_in` to infinite-loop when a device is unplugged, writing `err = -11` to the standard output. It's possible `-11` could be special-cased if it represents a more specific kind of error, but the program should exit gracefully with an error code in this case.
|
While appreciated, quitting on every error is not wanted. |
|
@jneen thanks for your contribution! Can you please re-do your PR against the https://github.com/jackaudio/jack-example-tools repository? As your changes are very small/trivial it would be easier to redo the pull request. Many thanks! :) |
|
I no longer use linux or jack so I have no way to test. It seems fairly small though so I'm sure yall can handle it! |
This line (from a 9-year-old commit!) causes
alsa_into infinite-loop when a device is unplugged, writingerr = -11to the standard output. It's possible-11could be special-cased if it represents a more specific kind of error, but the program should exit gracefully with an error code in this case.