errno.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* Error constants. Linux specific version.
  2. Copyright (C) 1996, 1997, 1998, 1999, 2002 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. #include <bits/errno_values.h>
  18. #ifndef ENOTSUP
  19. # define ENOTSUP EOPNOTSUPP
  20. #endif
  21. #ifndef ECANCELED
  22. # define ECANCELED 125
  23. #endif
  24. #ifndef __ASSEMBLER__
  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) __THROW __attribute__ ((__const__));
  29. # if defined _LIBC && ( defined IS_IN_libc || defined NOT_IN_libc )
  30. libc_hidden_proto(__errno_location)
  31. /* We wouldn't need a special macro anymore but it is history. */
  32. # define __set_errno(val) ((errno) = (val))
  33. # endif /* _LIBC */
  34. # ifdef __UCLIBC_HAS_THREADS__
  35. /* When using threads, errno is a per-thread value. */
  36. # define errno (*__errno_location ())
  37. # endif
  38. #endif /* !__ASSEMBLER__ */
  39. #endif /* _ERRNO_H */