2
0

errnos.c.inc 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * This list is the union of errno values overridden in asm-<arch>/errno.h
  3. * minus the errnos that are not actually generic to all archs.
  4. *
  5. * Please keep this list sorted alphabetically.
  6. *
  7. * Copyright (c) 2003 Fabrice Bellard
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  21. *
  22. * SPDX-License-Identifier: GPL-2.0-or-later
  23. */
  24. E(EADDRINUSE)
  25. E(EADDRNOTAVAIL)
  26. E(EADV)
  27. E(EAFNOSUPPORT)
  28. E(EAGAIN)
  29. E(EALREADY)
  30. E(EBADE)
  31. E(EBADFD)
  32. E(EBADMSG)
  33. E(EBADR)
  34. E(EBADRQC)
  35. E(EBADSLT)
  36. E(EBFONT)
  37. E(ECANCELED)
  38. E(ECHRNG)
  39. E(ECOMM)
  40. E(ECONNABORTED)
  41. E(ECONNREFUSED)
  42. E(ECONNRESET)
  43. E(EDEADLK)
  44. E(EDESTADDRREQ)
  45. E(EDOTDOT)
  46. E(EDQUOT)
  47. E(EHOSTDOWN)
  48. E(EHOSTUNREACH)
  49. #ifdef EHWPOISON
  50. E(EHWPOISON)
  51. #endif
  52. E(EIDRM)
  53. E(EILSEQ)
  54. E(EINPROGRESS)
  55. E(EISCONN)
  56. E(EISNAM)
  57. #ifdef EKEYEXPIRED
  58. E(EKEYEXPIRED)
  59. #endif
  60. #ifdef EKEYREJECTED
  61. E(EKEYREJECTED)
  62. #endif
  63. #ifdef EKEYREVOKED
  64. E(EKEYREVOKED)
  65. #endif
  66. E(EL2HLT)
  67. E(EL2NSYNC)
  68. E(EL3HLT)
  69. E(EL3RST)
  70. E(ELIBACC)
  71. E(ELIBBAD)
  72. E(ELIBEXEC)
  73. E(ELIBMAX)
  74. E(ELIBSCN)
  75. E(ELNRNG)
  76. E(ELOOP)
  77. E(EMEDIUMTYPE)
  78. E(EMSGSIZE)
  79. E(EMULTIHOP)
  80. E(ENAMETOOLONG)
  81. E(ENAVAIL)
  82. E(ENETDOWN)
  83. E(ENETRESET)
  84. E(ENETUNREACH)
  85. E(ENOANO)
  86. E(ENOBUFS)
  87. E(ENOCSI)
  88. E(ENODATA)
  89. #ifdef ENOKEY
  90. E(ENOKEY)
  91. #endif
  92. E(ENOLCK)
  93. E(ENOLINK)
  94. E(ENOMEDIUM)
  95. #ifdef ENOMSG
  96. E(ENOMSG)
  97. #endif
  98. E(ENONET)
  99. E(ENOPKG)
  100. E(ENOPROTOOPT)
  101. E(ENOSR)
  102. E(ENOSTR)
  103. E(ENOSYS)
  104. E(ENOTCONN)
  105. E(ENOTEMPTY)
  106. E(ENOTNAM)
  107. #ifdef ENOTRECOVERABLE
  108. E(ENOTRECOVERABLE)
  109. #endif
  110. E(ENOTSOCK)
  111. E(ENOTUNIQ)
  112. E(EOPNOTSUPP)
  113. E(EOVERFLOW)
  114. #ifdef EOWNERDEAD
  115. E(EOWNERDEAD)
  116. #endif
  117. E(EPFNOSUPPORT)
  118. E(EPROTO)
  119. E(EPROTONOSUPPORT)
  120. E(EPROTOTYPE)
  121. E(EREMCHG)
  122. E(EREMOTE)
  123. E(EREMOTEIO)
  124. E(ERESTART)
  125. #ifdef ERFKILL
  126. E(ERFKILL)
  127. #endif
  128. E(ESHUTDOWN)
  129. E(ESOCKTNOSUPPORT)
  130. E(ESRMNT)
  131. E(ESTALE)
  132. E(ESTRPIPE)
  133. E(ETIME)
  134. E(ETIMEDOUT)
  135. E(ETOOMANYREFS)
  136. E(EUCLEAN)
  137. E(EUNATCH)
  138. E(EUSERS)
  139. E(EXFULL)