errno.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* Copyright (C) 1991,92,93,94,95,96,97,2002 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <http://www.gnu.org/licenses/>. */
  14. /*
  15. * ISO C99 Standard: 7.5 Errors <errno.h>
  16. */
  17. #ifndef _ERRNO_H
  18. /* The includer defined __need_Emath if he wants only the definitions
  19. of EDOM and ERANGE, and not everything else. */
  20. #ifndef __need_Emath
  21. # define _ERRNO_H 1
  22. # include <features.h>
  23. #endif
  24. __BEGIN_DECLS
  25. /* Get the error number constants from the system-specific file.
  26. This file will test __need_Emath and _ERRNO_H. */
  27. #include <bits/errno.h>
  28. #undef __need_Emath
  29. #ifdef _ERRNO_H
  30. /* Declare the `errno' variable, unless it's defined as a macro by
  31. bits/errno.h. This is the case in GNU, where it is a per-thread
  32. variable. This redeclaration using the macro still works, but it
  33. will be a function declaration without a prototype and may trigger
  34. a -Wstrict-prototypes warning. */
  35. #ifndef errno
  36. extern int errno;
  37. #endif
  38. #ifdef _LIBC
  39. extern const char *__progname, *__progname_full;
  40. #endif
  41. #if defined __USE_GNU && defined __UCLIBC_HAS_PROGRAM_INVOCATION_NAME__
  42. /* The full and simple forms of the name with which the program was
  43. invoked. These variables are set up automatically at startup based on
  44. the value of ARGV[0] (this works only if you use GNU ld). */
  45. extern const char *program_invocation_name, *program_invocation_short_name;
  46. #endif /* __USE_GNU */
  47. #endif /* _ERRNO_H */
  48. __END_DECLS
  49. #ifdef _LIBC
  50. #ifdef IS_IN_rtld
  51. # undef errno
  52. # define errno _dl_errno
  53. extern int _dl_errno; /* attribute_hidden */
  54. #elif defined __UCLIBC_HAS_TLS__
  55. # if !defined NOT_IN_libc || defined IS_IN_libpthread
  56. # undef errno
  57. # ifndef NOT_IN_libc
  58. # define errno __libc_errno
  59. # else
  60. # define errno errno /* For #ifndef errno tests. */
  61. # endif
  62. extern __thread int errno attribute_tls_model_ie;
  63. # endif
  64. #endif
  65. #ifndef __set_errno
  66. #define __set_errno(val) (errno = (val))
  67. #endif
  68. #endif /* _LIBC */
  69. #endif /* _ERRNO_H */
  70. /* The Hurd <bits/errno.h> defines `error_t' as an enumerated type so
  71. that printing `error_t' values in the debugger shows the names. We
  72. might need this definition sometimes even if this file was included
  73. before. */
  74. #if defined __USE_GNU || defined __need_error_t
  75. # ifndef __error_t_defined
  76. typedef int error_t;
  77. # define __error_t_defined 1
  78. # endif
  79. # undef __need_error_t
  80. #endif