errno.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. 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. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If not,
  14. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 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. __BEGIN_DECLS
  25. /* We now need a declaration of the `errno' variable. */
  26. extern int errno;
  27. /* Function to get address of global `errno' variable. */
  28. extern int *__errno_location (void);
  29. # if defined _LIBC
  30. /* We wouldn't need a special macro anymore but it is history. */
  31. # define __set_errno(val) (*__errno_location ()) = (val)
  32. # endif /* _LIBC */
  33. # if !defined _LIBC || defined _LIBC_REENTRANT
  34. /* When using threads, errno is a per-thread value. */
  35. # define errno (*__errno_location ())
  36. # endif
  37. __END_DECLS
  38. # endif /* !__ASSEMBLER__ */
  39. #endif /* _ERRNO_H */
  40. #if !defined _ERRNO_H && defined __need_Emath
  41. /* This is ugly but the kernel header is not clean enough. We must
  42. define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
  43. defined. */
  44. # define EDOM 33 /* Math argument out of domain of function. */
  45. # define EILSEQ 88 /* Illegal byte sequence. */
  46. # define ERANGE 34 /* Math result not representable. */
  47. #endif /* !_ERRNO_H && __need_Emath */