errno.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #ifdef _ERRNO_H
  17. # undef EDOM
  18. # undef EILSEQ
  19. # undef ERANGE
  20. # include <linux/errno.h>
  21. /* Linux has no ENOTSUP error code. */
  22. # ifndef ENOTSUP
  23. # define ENOTSUP EOPNOTSUPP
  24. # endif
  25. /* Older Linux versions also had no ECANCELED error code. */
  26. # ifndef ECANCELED
  27. # define ECANCELED 125
  28. # endif
  29. /* Support for error codes to support robust mutexes was added later, too. */
  30. # ifndef EOWNERDEAD
  31. # define EOWNERDEAD 130
  32. # define ENOTRECOVERABLE 131
  33. # endif
  34. # ifndef __ASSEMBLER__
  35. /* Function to get address of global `errno' variable. */
  36. extern int *__errno_location (void) __THROW __attribute__ ((__const__));
  37. # ifdef _LIBC
  38. # ifndef __UCLIBC_HAS_TLS__
  39. extern int weak_const_function *__errno_location(void);
  40. # endif
  41. # endif
  42. libc_hidden_proto(__errno_location)
  43. # ifdef __UCLIBC_HAS_THREADS__
  44. /* When using threads, errno is a per-thread value. */
  45. # define errno (*__errno_location ())
  46. # endif
  47. # endif /* !__ASSEMBLER__ */
  48. #endif /* _ERRNO_H */
  49. #if !defined _ERRNO_H && defined __need_Emath
  50. /* This is ugly but the kernel header is not clean enough. We must
  51. define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
  52. defined. */
  53. # define EDOM 33 /* Math argument out of domain of function. */
  54. # define EILSEQ 84 /* Illegal byte sequence. */
  55. # define ERANGE 34 /* Math result not representable. */
  56. #endif /* !_ERRNO_H && __need_Emath */