errno.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* Error constants. MIPS/Linux specific version.
  2. Copyright (C) 1996, 1997, 1998, 1999, 2000 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. # define ENOTSUP EOPNOTSUPP
  23. # ifndef __ASSEMBLER__
  24. /* We now need a declaration of the `errno' variable. */
  25. extern int errno;
  26. /* Function to get address of global `errno' variable. */
  27. extern int *__errno_location (void) __THROW __attribute__ ((__const__));
  28. # if defined _LIBC
  29. /* We wouldn't need a special macro anymore but it is history. */
  30. # define __set_errno(val) (*__errno_location ()) = (val)
  31. # endif /* _LIBC */
  32. # if !defined _LIBC || defined __UCLIBC_HAS_THREADS__
  33. /* When using threads, errno is a per-thread value. */
  34. # define errno (*__errno_location ())
  35. # endif
  36. # endif /* !__ASSEMBLER__ */
  37. #endif /* _ERRNO_H */
  38. #if !defined _ERRNO_H && defined __need_Emath
  39. /* This is ugly but the kernel header is not clean enough. We must
  40. define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
  41. defined. */
  42. # define EDOM 33 /* Math argument out of domain of function. */
  43. # define EILSEQ 88 /* Illegal byte sequence. */
  44. # define ERANGE 34 /* Math result not representable. */
  45. #endif /* !_ERRNO_H && __need_Emath */