errno: Port to Minix.
authorBruno Haible <bruno@clisp.org>
Sun, 31 Jul 2011 17:00:23 +0000 (19:00 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 31 Jul 2011 17:00:23 +0000 (19:00 +0200)
* m4/errno_h.m4 (gl_HEADER_ERRNO_H): Test also whether ENETRESET and
ECONNABORTED are defined.
* lib/errno.in.h (ENETRESET, GNULIB_defined_ENETRESET, ECONNABORTED,
GNULIB_defined_ECONNABORTED): New macros.
* lib/strerror-override.h (strerror_override): Test also
GNULIB_defined_ENETRESET, GNULIB_defined_ECONNABORTED.
* lib/strerror-override.c (strerror_override): Handle also ENETRESET,
ECONNABORTED.
* doc/posix-headers/errno.texi: Mention the Minix problem.

ChangeLog
doc/posix-headers/errno.texi
lib/errno.in.h
lib/strerror-override.c
lib/strerror-override.h
m4/errno_h.m4

index f41fb6534acdafee82e9e0876bc219e353bc47b1..31952bbd0d19268874854424f5d51503dff939fc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2011-07-31  Bruno Haible  <bruno@clisp.org>
+
+       errno: Port to Minix.
+       * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Test also whether ENETRESET and
+       ECONNABORTED are defined.
+       * lib/errno.in.h (ENETRESET, GNULIB_defined_ENETRESET, ECONNABORTED,
+       GNULIB_defined_ECONNABORTED): New macros.
+       * lib/strerror-override.h (strerror_override): Test also
+       GNULIB_defined_ENETRESET, GNULIB_defined_ECONNABORTED.
+       * lib/strerror-override.c (strerror_override): Handle also ENETRESET,
+       ECONNABORTED.
+       * doc/posix-headers/errno.texi: Mention the Minix problem.
+
 2011-07-31  Bruno Haible  <bruno@clisp.org>
 
        Work around declaration collisions on Minix.
index eb1623dc7019717d4404131d462e27cab1642310..9247797bb2caa9eb45b56465c5662a66b6434340 100644 (file)
@@ -25,14 +25,17 @@ mingw, Interix 3.5.
 The macro @code{EDQUOT} is not defined on some platforms:
 NonStop Kernel, mingw.
 @item
+The macros @code{ENETRESET}, @code{ECONNABORTED} are not defined on some
+platforms:
+Minix 3.1.8, mingw.
+@item
 The macros @code{EWOULDBLOCK}, @code{ETXTBSY}, @code{ELOOP}, @code{ENOTSOCK},
 @code{EDESTADDRREQ}, @code{EMSGSIZE}, @code{EPROTOTYPE}, @code{ENOPROTOOPT},
 @code{EPROTONOSUPPORT}, @code{EOPNOTSUPP}, @code{EAFNOSUPPORT},
 @code{EADDRINUSE}, @code{EADDRNOTAVAIL}, @code{ENETDOWN}, @code{ENETUNREACH},
-@code{ENETRESET}, @code{ECONNABORTED}, @code{ECONNRESET}, @code{ENOBUFS},
-@code{EISCONN}, @code{ENOTCONN}, @code{ETIMEDOUT}, @code{ECONNREFUSED},
-@code{EHOSTUNREACH}, @code{EALREADY}, @code{EINPROGRESS} are not defined on
-some platforms:
+@code{ECONNRESET}, @code{ENOBUFS}, @code{EISCONN}, @code{ENOTCONN},
+@code{ETIMEDOUT}, @code{ECONNREFUSED}, @code{EHOSTUNREACH}, @code{EALREADY},
+@code{EINPROGRESS} are not defined on some platforms:
 mingw.
 @end itemize
 
index c413d183b4879a4561679af4ebc4548a65032bad..0bf57921186cdeb598c4bdebce5b023e81c76f8e 100644 (file)
 #  define GNULIB_defined_ENOTSUP 1
 # endif
 
+# ifndef ENETRESET
+#  define ENETRESET 2011
+#  define GNULIB_defined_ENETRESET 1
+# endif
+
+# ifndef ECONNABORTED
+#  define ECONNABORTED 2012
+#  define GNULIB_defined_ECONNABORTED 1
+# endif
+
 # ifndef ESTALE
 #  define ESTALE    2009
 #  define GNULIB_defined_ESTALE 1
index e103173145f3a617c8383067ccd52f75c875e3a1..d6ecf2ecae9c29fe9e8088cd5971edf6090e5c83 100644 (file)
@@ -248,6 +248,16 @@ strerror_override (int errnum)
       return "Not supported";
 #endif
 
+#if GNULIB_defined_ENETRESET
+    case ENETRESET:
+      return "Network dropped connection on reset";
+#endif
+
+#if GNULIB_defined_ECONNABORTED
+    case ECONNABORTED:
+      return "Software caused connection abort";
+#endif
+
 #if GNULIB_defined_ESTALE
     case ESTALE:
       return "Stale NFS file handle";
index a26e11ad09e918223fcbe06e337af06911294f22..81e4a50759485d7e0455d9c3f49563cb96f0ff56 100644 (file)
@@ -39,6 +39,8 @@
      || GNULIB_defined_EBADMSG \
      || GNULIB_defined_EOVERFLOW \
      || GNULIB_defined_ENOTSUP \
+     || GNULIB_defined_ENETRESET \
+     || GNULIB_defined_ECONNABORTED \
      || GNULIB_defined_ESTALE \
      || GNULIB_defined_EDQUOT \
      || GNULIB_defined_ECANCELED
index a6d37f3b32885ba24cee03a7594ddc8a6db82f23..560adbafed44ca6fbcc9256634a0b338ff1b2de1 100644 (file)
@@ -1,4 +1,4 @@
-# errno_h.m4 serial 9
+# errno_h.m4 serial 10
 dnl Copyright (C) 2004, 2006, 2008-2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -34,6 +34,12 @@ booboo
 #if !defined ENOTSUP
 booboo
 #endif
+#if !defined ENETRESET
+booboo
+#endif
+#if !defined ECONNABORTED
+booboo
+#endif
 #if !defined ESTALE
 booboo
 #endif