Tolerate declared but missing pipe2 syscall.
authorBruno Haible <bruno@clisp.org>
Sun, 23 Aug 2009 22:42:22 +0000 (00:42 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 23 Aug 2009 22:51:43 +0000 (00:51 +0200)
ChangeLog
lib/pipe2.c
lib/unistd.in.h
m4/pipe2.m4
modules/pipe2

index 438cc9c5532f0adddf222ce845cade65bf693a85..3f8349d429731b66eb9bb1d6704926f5213be955 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2009-08-23  Bruno Haible  <bruno@clisp.org>
+
+       Tolerate declared but missing pipe2 syscall.
+       * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
+       available.
+       * lib/unistd.in.h (pipe2): If the function is already present,
+       override it.
+       * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
+       * modules/pipe2 (Makefile.am): Compile pipe2.c always.
+       Reported by Paolo Bonzini.
+
 2009-08-23  Bruno Haible  <bruno@clisp.org>
 
        * lib/pipe2.c (pipe2): Move #ifs inside function.
index d5833ddfcc1afae81bf2c2f410b45854717e6f5d..c18860de3074ad98d7e6ebc75cac9f471dba1a0d 100644 (file)
 int
 pipe2 (int fd[2], int flags)
 {
+#if HAVE_PIPE2
+# undef pipe2
+  /* Try the system call first, if it exists.  (We may be running with a glibc
+     that has the function but with an older kernel that lacks it.)  */
+  {
+    int result = pipe2 (fd, flags);
+    if (!(result < 0 && errno == ENOSYS))
+      return result;
+  }
+#endif
+
 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
 /* Native Woe32 API.  */
 
index 7dd98346c07f76b71eb27d4e874a321c2a86ac69..2f3be174006c3465ac6dc287e768ce90115c8208 100644 (file)
@@ -562,9 +562,10 @@ extern int link (const char *path1, const char *path2);
    Return 0 upon success, or -1 with errno set upon failure.
    See also the Linux man page at
    <http://www.kernel.org/doc/man-pages/online/pages/man2/pipe2.2.html>.  */
-# if !@HAVE_PIPE2@
-extern int pipe2 (int fd[2], int flags);
+# if @HAVE_PIPE2@
+#  define pipe2 rpl_pipe2
 # endif
+extern int pipe2 (int fd[2], int flags);
 #elif defined GNULIB_POSIXCHECK
 # undef pipe2
 # define pipe2(f,o) \
index d0aae439e05d21d0dce686612cd6da5032c8b82c..54f6ec75654abb5a8ff50c666a1d3aeab35913e1 100644 (file)
@@ -1,4 +1,4 @@
-# pipe2.m4 serial 1
+# pipe2.m4 serial 2
 dnl Copyright (C) 2009 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -14,6 +14,5 @@ AC_DEFUN([gl_FUNC_PIPE2],
   AC_CHECK_FUNCS_ONCE([pipe2])
   if test $ac_cv_func_pipe2 != yes; then
     HAVE_PIPE2=0
-    AC_LIBOBJ([pipe2])
   fi
 ])
index 9117e73adf8be63cf8d139743855b28c806748ac..036d8730b66db6be6a7714381aa5c9d8d4232a82 100644 (file)
@@ -15,6 +15,7 @@ gl_FUNC_PIPE2
 gl_UNISTD_MODULE_INDICATOR([pipe2])
 
 Makefile.am:
+lib_SOURCES += pipe2.c
 
 Include:
 <unistd.h>