X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fpipe2.c;h=77a7c154025f792dceea9f0c4530eb7ba486be0b;hb=daf7f8c02242c535d596231e2f655109b97fa2bc;hp=1590deeae365c960dfd5a66e32899cf5b0f61031;hpb=3dbe75e4eb0623e54141a53aac7bb71d602e4332;p=gnulib.git diff --git a/lib/pipe2.c b/lib/pipe2.c index 1590deeae..77a7c1540 100644 --- a/lib/pipe2.c +++ b/lib/pipe2.c @@ -1,5 +1,5 @@ /* Create a pipe, with specific opening flags. - Copyright (C) 2009-2011 Free Software Foundation, Inc. + Copyright (C) 2009-2012 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + with this program; if not, see . */ #include @@ -31,7 +30,7 @@ #endif #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ -/* Native Woe32 API. */ +/* Native Windows API. */ # include @@ -43,7 +42,9 @@ pipe2 (int fd[2], int flags) /* Mingw _pipe() corrupts fd on failure; also, if we succeed at creating the pipe but later fail at changing fcntl, we want to leave fd unchanged: http://austingroupbugs.net/view.php?id=467 */ - int tmp[2] = { fd[0], fd[1] }; + int tmp[2]; + tmp[0] = fd[0]; + tmp[1] = fd[1]; #if HAVE_PIPE2 # undef pipe2 @@ -73,7 +74,7 @@ pipe2 (int fd[2], int flags) } #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ -/* Native Woe32 API. */ +/* Native Windows API. */ if (_pipe (fd, 4096, flags & ~O_NONBLOCK) < 0) { @@ -93,7 +94,9 @@ pipe2 (int fd[2], int flags) goto fail; } # else - verify (O_NONBLOCK == 0); + { + verify (O_NONBLOCK == 0); + } # endif return 0; @@ -149,6 +152,8 @@ pipe2 (int fd[2], int flags) #endif +#if GNULIB_defined_O_NONBLOCK || \ + !((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) fail: { int saved_errno = errno; @@ -159,4 +164,5 @@ pipe2 (int fd[2], int flags) errno = saved_errno; return -1; } +#endif }