This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.27.9000-230-gceb54b9


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  ceb54b9b4ff5ef7d518a6e6e415a6897fb77eb67 (commit)
      from  79962d89a95247509b345ae068a84575718edbd7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=ceb54b9b4ff5ef7d518a6e6e415a6897fb77eb67

commit ceb54b9b4ff5ef7d518a6e6e415a6897fb77eb67
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Mar 20 03:10:57 2018 +0100

    Fix errno values
    
    	* manual/errno.texi (EOWNERDEAD, ENOTRECOVERABLE): Remove errno
    	values from Linux-specific section now that it is in the GNU section.
    	* sysdeps/gnu/errlist.c: Regenerate.

diff --git a/ChangeLog b/ChangeLog
index 08488fe..3399e56 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-03-20  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+	* manual/errno.texi (EOWNERDEAD, ENOTRECOVERABLE): Remove errno
+	values from Linux-specific section now that it is in the GNU section.
+	* sysdeps/gnu/errlist.c: Regenerate.
+
 2018-03-20  Joseph Myers  <joseph@codesourcery.com>
 
 	* math/Makefile (libm-narrow-fns): Add sub.
diff --git a/manual/errno.texi b/manual/errno.texi
index 8917ccc..b195b63 100644
--- a/manual/errno.texi
+++ b/manual/errno.texi
@@ -1111,16 +1111,6 @@ They are not yet documented.}
 @errno{EKEYREJECTED, ???/???, Key was rejected by service}
 @end deftypevr
 
-@deftypevr Macro int EOWNERDEAD
-@standards{Linux, errno.h}
-@errno{EOWNERDEAD, ???/???, Owner died}
-@end deftypevr
-
-@deftypevr Macro int ENOTRECOVERABLE
-@standards{Linux, errno.h}
-@errno{ENOTRECOVERABLE, ???/???, State not recoverable}
-@end deftypevr
-
 @deftypevr Macro int ERFKILL
 @standards{Linux, errno.h}
 @errno{ERFKILL, ???/???, Operation not possible due to RF-kill}
diff --git a/sysdeps/gnu/errlist.c b/sysdeps/gnu/errlist.c
index 4a1c093..31ebfa9 100644
--- a/sysdeps/gnu/errlist.c
+++ b/sysdeps/gnu/errlist.c
@@ -1090,6 +1090,22 @@ TRANS error; @pxref{Cancel AIO Operations}. */
 # define ERR_MAX ECANCELED
 # endif
 #endif
+#ifdef EOWNERDEAD
+/* */
+    [ERR_REMAP (EOWNERDEAD)] = N_("Owner died"),
+# if EOWNERDEAD > ERR_MAX
+# undef ERR_MAX
+# define ERR_MAX EOWNERDEAD
+# endif
+#endif
+#ifdef ENOTRECOVERABLE
+/* */
+    [ERR_REMAP (ENOTRECOVERABLE)] = N_("State not recoverable"),
+# if ENOTRECOVERABLE > ERR_MAX
+# undef ERR_MAX
+# define ERR_MAX ENOTRECOVERABLE
+# endif
+#endif
 #ifdef ERESTART
 /* */
     [ERR_REMAP (ERESTART)] = N_("Interrupted system call should be restarted"),
@@ -1434,22 +1450,6 @@ TRANS error; @pxref{Cancel AIO Operations}. */
 # define ERR_MAX EKEYREJECTED
 # endif
 #endif
-#ifdef EOWNERDEAD
-/* */
-    [ERR_REMAP (EOWNERDEAD)] = N_("Owner died"),
-# if EOWNERDEAD > ERR_MAX
-# undef ERR_MAX
-# define ERR_MAX EOWNERDEAD
-# endif
-#endif
-#ifdef ENOTRECOVERABLE
-/* */
-    [ERR_REMAP (ENOTRECOVERABLE)] = N_("State not recoverable"),
-# if ENOTRECOVERABLE > ERR_MAX
-# undef ERR_MAX
-# define ERR_MAX ENOTRECOVERABLE
-# endif
-#endif
 #ifdef ERFKILL
 /* */
     [ERR_REMAP (ERFKILL)] = N_("Operation not possible due to RF-kill"),

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog             |    6 ++++++
 manual/errno.texi     |   10 ----------
 sysdeps/gnu/errlist.c |   32 ++++++++++++++++----------------
 3 files changed, 22 insertions(+), 26 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]