Use O_NONBLOCK when opening audio pipe on linux.
commit2456707799f5ee29ccd0ccf7ba530d205115803c
authorSergey Ulanov <sergeyu@chromium.org>
Wed, 24 Dec 2014 00:36:30 +0000 (23 16:36 -0800)
committerSergey Ulanov <sergeyu@chromium.org>
Wed, 24 Dec 2014 00:38:03 +0000 (24 00:38 +0000)
tree13b53cca5b2cf64e6570d45b3d6525768027ed96
parentfc38eeb37ff940849dd4e577b5e20b6598f38859
Use O_NONBLOCK when opening audio pipe on linux.

By default open() blocks when opening a fifo until the writer also
opens the fifo. In the past AudioPipeReader was using O_NONBLOCK
when opening the pipe for reading, but that was changed in r277315,
and may result in host hanging if pulseaudio doesn't open the pipe
for some reason. Fixed AudioPipeReader to always pass O_NONBLOCK
to open().

BUG=420090
R=lambroslambrou@chromium.org

Review URL: https://codereview.chromium.org/820123002

Cr-Commit-Position: refs/heads/master@{#309592}
remoting/host/linux/audio_pipe_reader.cc