errno.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*****************************************************************************/
  2. /* ERRNO.H v8.2.2 */
  3. /* */
  4. /* Copyright (c) 1995-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /*****************************************************************************/
  37. #ifndef _ERRNO
  38. #define _ERRNO
  39. #pragma diag_push
  40. #pragma CHECK_MISRA("-6.3") /* standard types required for standard headers */
  41. #pragma CHECK_MISRA("-19.1") /* #includes required for implementation */
  42. #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */
  43. #pragma CHECK_MISRA("-20.2") /* standard headers must define standard names */
  44. #ifdef __cplusplus
  45. //----------------------------------------------------------------------------
  46. // <cerrno> IS RECOMMENDED OVER <errno.h>. <errno.h> IS PROVIDED FOR
  47. // COMPATIBILITY WITH C AND THIS USAGE IS DEPRECATED IN C++
  48. //----------------------------------------------------------------------------
  49. extern "C" namespace std
  50. {
  51. #endif /* __cplusplus */
  52. #include <linkage.h>
  53. #include <_tls.h>
  54. /* Values defined by the C standard */
  55. #define EDOM 0x0021
  56. #define ERANGE 0x0022
  57. #define EILSEQ 0x0058
  58. /* Values defined by POSIX. Unsupported macros are commented out */
  59. #define E2BIG 0x0007
  60. #define EACCES 0x000D
  61. /* EADDRINUSE */
  62. /* EADDRNOTAVAIL */
  63. /* EAFNOSUPPORT */
  64. #define EAGAIN 0x000B
  65. /* EALREADY */
  66. #define EBADF 0x0009
  67. #define EBADMSG 0x004D
  68. #define EBUSY 0x0010
  69. #define ECANCELED 0x002F
  70. #define ECHILD 0x000A
  71. /* ECONNABORTED */
  72. /* ECONNREFUSED */
  73. #define EDEADLK 0x002D
  74. /* EDESTADDRREQ */
  75. /* EDOM defined above */
  76. /* EDQUOT */
  77. #define EEXIST 0x0011
  78. #define EFAULT 0x000E
  79. #define EFBIG 0x001B
  80. /* EHOSTUNREACH */
  81. /* EIDRM */
  82. /* EILSEQ defined above */
  83. #define EINPROGRESS 0x0096
  84. #define EINTR 0x0004
  85. #define EINVAL 0x0016
  86. #define EIO 0x0005
  87. /* EISCONN */
  88. #define EISDIR 0x0015
  89. /* ELOOP */
  90. #define EMFILE 0x0018
  91. #define EMLINK 0x001F
  92. #define EMSGSIZE 0x0061
  93. /* EMULTIHOP */
  94. #define ENAMETOOLONG 0x004E
  95. /* ENETDOWN */
  96. /* ENETREST */
  97. /* ENETUNREACH */
  98. #define ENFILE 0x0017
  99. /* ENOBUFS */
  100. /* ENODATA */
  101. #define ENODEV 0x0013
  102. #define ENOENT 0x0002
  103. #define ENOEXEC 0x0008
  104. #define ENOLCK 0x002E
  105. /* ENOLINK */
  106. #define ENOMEM 0x000C
  107. /* ENOMSG */
  108. /* ENOPROTOOPT */
  109. #define ENOSPC 0x001C
  110. /* ENOSR */
  111. /* ENOSTR */
  112. #define ENOSYS 0x0059
  113. /* ENOTCONN */
  114. #define ENOTDIR 0x0014
  115. #define ENOTEMPTY 0x005D
  116. /* ENOTSOCK */
  117. #define ENOTSUP 0x0030
  118. #define ENOTTY 0x0019
  119. #define ENXIO 0x0006
  120. /* EOPNOTSUPP */
  121. /* EOVERFLOW */
  122. #define EPERM 0x0001
  123. #define EPIPE 0x0020
  124. /* EPROTO */
  125. /* EPROTONOSUPPORT */
  126. /* EPROTOTYPE */
  127. /* ERANGE defined above */
  128. #define EROFS 0x001E
  129. #define ESPIPE 0x001D
  130. #define ESRCH 0x0003
  131. /* ESTALE */
  132. /* ETIME */
  133. #define ETIMEDOUT 0x0091
  134. /* ETXTBSY */
  135. /* EWOULDBLOCK */
  136. #define EXDEV 0x0012
  137. /* TI specific value used in ftell() and fgetpos() */
  138. #define EFPOS 0x0098
  139. #if !defined(__C6X_MIGRATION__) && defined(__TMS320C6X__) && defined(__TI_EABI__)
  140. /*------------------------------------------------------------------------*/
  141. /* Under EABI, use function to access errno since it likely has TLS in */
  142. /* a thread-safe version of the RTS library. */
  143. /*------------------------------------------------------------------------*/
  144. extern int *__c6xabi_errno_addr(void);
  145. __TI_TLS_DATA_DECL(int, __errno);
  146. #ifdef __cplusplus
  147. #define errno (* ::std::__c6xabi_errno_addr())
  148. #else
  149. #define errno (* __c6xabi_errno_addr())
  150. #endif
  151. #else
  152. extern _DATA_ACCESS int errno;
  153. #pragma diag_push
  154. /* errno is not allowed under MISRA, anyway */
  155. #pragma CHECK_MISRA("-5.6") /* duplicated name in another scope (errno) */
  156. #pragma CHECK_MISRA("-19.4") /* macro expands to parenthesized */
  157. #ifdef __cplusplus
  158. #define errno ::std::errno
  159. #else
  160. #define errno errno
  161. #endif
  162. #pragma diag_pop
  163. #endif
  164. #ifdef __cplusplus
  165. } /* extern "C" namespace std */
  166. #endif /* __cplusplus */
  167. #pragma diag_pop
  168. #endif /* _ERRNO */
  169. #pragma diag_push
  170. /* using declarations must occur outside header guard to support including both
  171. C and C++-wrapped version of header; see _CPP_STYLE_HEADER check */
  172. /* this code is for C++ mode only and thus also not relevant for MISRA */
  173. #pragma CHECK_MISRA("-19.15")
  174. #if defined(__cplusplus) && !defined(_CPP_STYLE_HEADER)
  175. #endif /* _CPP_STYLE_HEADER */
  176. #pragma diag_pop