errno.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Error constants.  Linux specific version.
  2.    Copyright (C) 1996, 1997, 1998, 1999 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. /* Linux also had no ECANCELED error code.  Since it is not used here
  24.    we define it to an invalid value.  */
  25. # ifndef ECANCELED
  26. #  define ECANCELED 125
  27. # endif
  28. # ifndef __ASSEMBLER__
  29. /* Function to get address of global `errno' variable.  */
  30. extern int *__errno_location (void) __THROW __attribute__ ((__const__));
  31. #  if !defined _LIBC || defined _LIBC_REENTRANT
  32. /* When using threads, errno is a per-thread value.  */
  33. #   define errno (*__errno_location ())
  34. #  endif
  35. # endif /* !__ASSEMBLER__ */
  36. #endif /* _ERRNO_H */
  37. #if !defined _ERRNO_H && defined __need_Emath
  38. /* This is ugly but the kernel header is not clean enough.  We must
  39.    define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
  40.    defined.  */
  41. # define EDOM 33 /* Math argument out of domain of function.  */
  42. # define EILSEQ 84 /* Illegal byte sequence.  */
  43. # define ERANGE 34 /* Math result not representable.  */
  44. #endif /* !_ERRNO_H && __need_Emath */