errno.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* Error constants. Linux specific version.
  2. Copyright (C) 1996, 1997, 1998, 1999, 2005 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifdef _ERRNO_H
  16. # undef EDOM
  17. # undef EILSEQ
  18. # undef ERANGE
  19. # include <linux/errno.h>
  20. /* Linux has no ENOTSUP error code. */
  21. # ifndef ENOTSUP
  22. # define ENOTSUP EOPNOTSUPP
  23. # endif
  24. /* Older Linux versions also had no ECANCELED error code. */
  25. # ifndef ECANCELED
  26. # define ECANCELED 125
  27. # endif
  28. /* Support for error codes to support robust mutexes was added later, too. */
  29. # ifndef EOWNERDEAD
  30. # define EOWNERDEAD 130
  31. # define ENOTRECOVERABLE 131
  32. # endif
  33. # ifndef __ASSEMBLER__
  34. /* Function to get address of global `errno' variable. */
  35. extern int *__errno_location (void) __THROW __attribute__ ((__const__));
  36. # ifdef _LIBC
  37. # if !defined(__UCLIBC_HAS_TLS__) && !defined(__UCLIBC_HAS_THREADS__)
  38. extern int weak_const_function *__errno_location(void);
  39. # endif
  40. # endif
  41. libc_hidden_proto(__errno_location)
  42. # ifdef __UCLIBC_HAS_THREADS__
  43. /* When using threads, errno is a per-thread value. */
  44. # define errno (*__errno_location ())
  45. # endif
  46. # endif /* !__ASSEMBLER__ */
  47. #endif /* _ERRNO_H */
  48. #if !defined _ERRNO_H && defined __need_Emath
  49. /* This is ugly but the kernel header is not clean enough. We must
  50. define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
  51. defined. */
  52. # define EDOM 33 /* Math argument out of domain of function. */
  53. # define EILSEQ 84 /* Illegal byte sequence. */
  54. # define ERANGE 34 /* Math result not representable. */
  55. #endif /* !_ERRNO_H && __need_Emath */