mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
examples: ipcpipeline: get rid of yet another use of SOCK_NONBLOCK
https://bugzilla.gnome.org/show_bug.cgi?id=786763
This commit is contained in:
parent
6ef65f550b
commit
91edec25dd
1 changed files with 7 additions and 1 deletions
|
@ -969,10 +969,16 @@ main (gint argc, gchar ** argv)
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (socketpair (AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK, 0, pipes)) {
|
||||
if (socketpair (AF_UNIX, SOCK_STREAM, 0, pipes)) {
|
||||
fprintf (stderr, "Error creating pipes: %s\n", strerror (errno));
|
||||
return 2;
|
||||
}
|
||||
if (fcntl (pipes[0], F_SETFL, O_NONBLOCK) < 0 ||
|
||||
fcntl (pipes[1], F_SETFL, O_NONBLOCK) < 0) {
|
||||
fprintf (stderr, "Error setting O_NONBLOCK on pipes: %s\n",
|
||||
strerror (errno));
|
||||
return 2;
|
||||
}
|
||||
|
||||
pid = fork ();
|
||||
if (pid < 0) {
|
||||
|
|
Loading…
Reference in a new issue