Separate out error_t definition
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 4 Mar 2018 02:15:49 +0000 (03:15 +0100)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 4 Mar 2018 16:27:58 +0000 (17:27 +0100)
so interfaces needing it can get it.

* stdlib/errno.h (error_t): Move definition to...
* bits/types/error_t.h: ... new header.
* stdlib/Makefile (headers): Add bits/types/error_t.h.
* sysdeps/mach/hurd/bits/errno.h (error_t): Move definition to...
* sysdeps/mach/hurd/bits/types/error_t.h: ... new header.
* sysdeps/mach/hurd/errnos.awk (error_t): Likewise.
* hurd/hurd.h: Include <bits/types/error_t.h>
* hurd/hurd/fd.h: Include <bits/types/error_t.h>
* hurd/hurd/id.h: Include <errno.h> and <bits/types/error_t.h>
* hurd/hurd/lookup.h: Include <errno.h> and <bits/types/error_t.h>
* hurd/hurd/resource.h: Include <bits/types/error_t.h>
* hurd/hurd/signal.h: Include <bits/types/error_t.h>
* hurd/hurd/sigpreempt.h: Include <bits/types/error_t.h>

14 files changed:
ChangeLog
bits/types/error_t.h [new file with mode: 0644]
hurd/hurd.h
hurd/hurd/fd.h
hurd/hurd/id.h
hurd/hurd/lookup.h
hurd/hurd/resource.h
hurd/hurd/signal.h
hurd/hurd/sigpreempt.h
stdlib/Makefile
stdlib/errno.h
sysdeps/mach/hurd/bits/errno.h
sysdeps/mach/hurd/bits/types/error_t.h [new file with mode: 0644]
sysdeps/mach/hurd/errnos.awk

index 2810a9c..a2d8575 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        Include <stddef.h> and <bits/types/sigset_t.h>
        (struct hurd_signal_preemptor, hurd_catch_signal): Use __sighandler_t
        instead of sighandler_t.
+       * stdlib/errno.h (error_t): Move definition to...
+       * bits/types/error_t.h: ... new header.
+       * stdlib/Makefile (headers): Add bits/types/error_t.h.
+       * sysdeps/mach/hurd/bits/errno.h (error_t): Move definition to...
+       * sysdeps/mach/hurd/bits/types/error_t.h: ... new header.
+       * sysdeps/mach/hurd/errnos.awk (error_t): Likewise.
+       * hurd/hurd.h: Include <bits/types/error_t.h>
+       * hurd/hurd/fd.h: Include <bits/types/error_t.h>
+       * hurd/hurd/id.h: Include <errno.h> and <bits/types/error_t.h>
+       * hurd/hurd/lookup.h: Include <errno.h> and <bits/types/error_t.h>
+       * hurd/hurd/resource.h: Include <bits/types/error_t.h>
+       * hurd/hurd/signal.h: Include <bits/types/error_t.h>
+       * hurd/hurd/sigpreempt.h: Include <bits/types/error_t.h>
 
 2018-03-03  Andreas Schwab  <schwab@linux-m68k.org>
 
diff --git a/bits/types/error_t.h b/bits/types/error_t.h
new file mode 100644 (file)
index 0000000..8ea7a81
--- /dev/null
@@ -0,0 +1,24 @@
+/* Define error_t.
+   Copyright (C) 1991-2018 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#ifndef __error_t_defined
+# define __error_t_defined 1
+
+typedef int error_t;
+
+#endif
index 029a7eb..d3c8689 100644 (file)
@@ -41,6 +41,7 @@
 #include <hurd/port.h>
 
 #include <errno.h>
+#include <bits/types/error_t.h>
 #include <bits/types/sigset_t.h>
 
 #ifndef _HURD_H_EXTERN_INLINE
index 5a067d4..af5fdcf 100644 (file)
@@ -142,6 +142,7 @@ _hurd_fd_get (int fd)
      __result; })
 \f
 #include <errno.h>
+#include <bits/types/error_t.h>
 
 /* Check if ERR should generate a signal.
    Returns the signal to take, or zero if none.  */
index 28563c9..38988bf 100644 (file)
@@ -21,6 +21,8 @@
 #define        _HURD_ID_H      1
 #include <features.h>
 #include <hurd/hurd_types.h>
+#include <errno.h>
+#include <bits/types/error_t.h>
 
 #include <cthreads.h>          /* For `struct mutex'.  */
 
index 9a1f580..d0fa87b 100644 (file)
@@ -19,6 +19,8 @@
 #ifndef _HURD_LOOKUP_H
 #define _HURD_LOOKUP_H 1
 
+#include <errno.h>
+#include <bits/types/error_t.h>
 #include <hurd/hurd_types.h>
 
 /* These functions all take two callback functions as the first two arguments.
index 23b795d..eb93110 100644 (file)
@@ -22,6 +22,7 @@
 #include <sys/types.h>
 #include <sys/resource.h>
 #include <errno.h>
+#include <bits/types/error_t.h>
 #include <hurd/process.h>
 
 /* This array contains the current resource limits for the process.  */
index 9cb5f3c..d4edf31 100644 (file)
@@ -31,6 +31,7 @@
 #include <hurd/hurd_types.h>
 #include <signal.h>
 #include <errno.h>
+#include <bits/types/error_t.h>
 #include <bits/types/stack_t.h>
 #include <bits/types/sigset_t.h>
 #include <hurd/msg.h>
index d059408..a1df82e 100644 (file)
@@ -22,6 +22,7 @@
 #define __need_size_t
 #include <stddef.h>
 #include <errno.h>
+#include <bits/types/error_t.h>
 #include <signal.h>            /* For sighandler_t, SIG_ERR.  */
 #include <bits/types/sigset_t.h>
 struct hurd_sigstate;          /* <hurd/signal.h> */
index 7c363a6..af1643c 100644 (file)
@@ -25,7 +25,7 @@ include ../Makeconfig
 headers        := stdlib.h bits/stdlib.h bits/stdlib-ldbl.h bits/stdlib-float.h      \
           monetary.h bits/monetary-ldbl.h                                    \
           inttypes.h stdint.h bits/wordsize.h                                \
-          errno.h sys/errno.h bits/errno.h                                   \
+          errno.h sys/errno.h bits/errno.h bits/types/error_t.h              \
           ucontext.h sys/ucontext.h                                          \
           alloca.h fmtmsg.h                                                  \
           bits/stdlib-bsearch.h sys/random.h bits/stdint-intn.h              \
index e12fed6..fc8b496 100644 (file)
@@ -45,12 +45,7 @@ extern int *__errno_location (void) __THROW __attribute_const__;
 extern char *program_invocation_name;
 extern char *program_invocation_short_name;
 
-/* bits/errno.h may have defined this type.  If it didn't, provide a
-   fallback definition.  */
-#  ifndef __error_t_defined
-#   define __error_t_defined 1
-typedef int error_t;
-#  endif
+#include <bits/types/error_t.h>
 
 # endif /* __USE_GNU */
 
index f0a11af..f16cd51 100644 (file)
@@ -215,14 +215,6 @@ enum __error_t_codes
   __FORCE_ERROR_T_CODES_SIGNED = -1
 };
 
-/* User-visible type of error codes.  It is ok to use 'int' or
-   'kern_return_t' for these, but with 'error_t' the debugger prints
-   symbolic values.  */
-# if !defined __error_t_defined && defined __USE_GNU
-#  define __error_t_defined 1
-typedef enum __error_t_codes error_t;
-# endif
-
 #endif /* not __ASSEMBLER__ */
 
 /* The C standard requires that all of the E-constants be
diff --git a/sysdeps/mach/hurd/bits/types/error_t.h b/sysdeps/mach/hurd/bits/types/error_t.h
new file mode 100644 (file)
index 0000000..286e5fd
--- /dev/null
@@ -0,0 +1,29 @@
+/* Define error_t.
+   Copyright (C) 1991-2018 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include <bits/errno.h>
+
+/* User-visible type of error codes.  It is ok to use 'int' or
+   'kern_return_t' for these, but with 'error_t' the debugger prints
+   symbolic values.  */
+#ifndef __error_t_defined
+# define __error_t_defined 1
+
+typedef enum __error_t_codes error_t;
+
+#endif
index bc69e06..dc19350 100644 (file)
@@ -181,14 +181,6 @@ function print_errno_enum(maxseq)
   print "  __FORCE_ERROR_T_CODES_SIGNED = -1";
   print "};";
   print "";
-  print "/* User-visible type of error codes.  It is ok to use 'int' or";
-  print "   'kern_return_t' for these, but with 'error_t' the debugger prints";
-  print "   symbolic values.  */";
-  print "# if !defined __error_t_defined && defined __USE_GNU";
-  print "#  define __error_t_defined 1";
-  print "typedef enum __error_t_codes error_t;"
-  print "# endif";
-  print "";
   print "#endif /* not __ASSEMBLER__ */";
 }