errno.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1995, 1999, 2001 by Ralf Baechle
  7.  */
  8. #ifndef _ASM_ERRNO_H
  9. #define _ASM_ERRNO_H
  10. /*
  11.  * These error numbers are intended to be MIPS ABI compatible
  12.  */
  13. #define EPERM  1 /* Operation not permitted */
  14. #define ENOENT  2 /* No such file or directory */
  15. #define ESRCH  3 /* No such process */
  16. #define EINTR  4 /* Interrupted system call */
  17. #define EIO  5 /* I/O error */
  18. #define ENXIO  6 /* No such device or address */
  19. #define E2BIG  7 /* Argument list too long */
  20. #define ENOEXEC  8 /* Exec format error */
  21. #define EBADF  9 /* Bad file number */
  22. #define ECHILD 10 /* No child processes */
  23. #define EAGAIN 11 /* Try again */
  24. #define ENOMEM 12 /* Out of memory */
  25. #define EACCES 13 /* Permission denied */
  26. #define EFAULT 14 /* Bad address */
  27. #define ENOTBLK 15 /* Block device required */
  28. #define EBUSY 16 /* Device or resource busy */
  29. #define EEXIST 17 /* File exists */
  30. #define EXDEV 18 /* Cross-device link */
  31. #define ENODEV 19 /* No such device */
  32. #define ENOTDIR 20 /* Not a directory */
  33. #define EISDIR 21 /* Is a directory */
  34. #define EINVAL 22 /* Invalid argument */
  35. #define ENFILE 23 /* File table overflow */
  36. #define EMFILE 24 /* Too many open files */
  37. #define ENOTTY 25 /* Not a typewriter */
  38. #define ETXTBSY 26 /* Text file busy */
  39. #define EFBIG 27 /* File too large */
  40. #define ENOSPC 28 /* No space left on device */
  41. #define ESPIPE 29 /* Illegal seek */
  42. #define EROFS 30 /* Read-only file system */
  43. #define EMLINK 31 /* Too many links */
  44. #define EPIPE 32 /* Broken pipe */
  45. #define EDOM 33 /* Math argument out of domain of func */
  46. #define ERANGE 34 /* Math result not representable */
  47. #define ENOMSG 35 /* No message of desired type */
  48. #define EIDRM 36 /* Identifier removed */
  49. #define ECHRNG 37 /* Channel number out of range */
  50. #define EL2NSYNC 38 /* Level 2 not synchronized */
  51. #define EL3HLT 39 /* Level 3 halted */
  52. #define EL3RST 40 /* Level 3 reset */
  53. #define ELNRNG 41 /* Link number out of range */
  54. #define EUNATCH 42 /* Protocol driver not attached */
  55. #define ENOCSI 43 /* No CSI structure available */
  56. #define EL2HLT 44 /* Level 2 halted */
  57. #define EDEADLK 45 /* Resource deadlock would occur */
  58. #define ENOLCK 46 /* No record locks available */
  59. #define EBADE 50 /* Invalid exchange */
  60. #define EBADR 51 /* Invalid request descriptor */
  61. #define EXFULL 52 /* Exchange full */
  62. #define ENOANO 53 /* No anode */
  63. #define EBADRQC 54 /* Invalid request code */
  64. #define EBADSLT 55 /* Invalid slot */
  65. #define EDEADLOCK 56 /* File locking deadlock error */
  66. #define EBFONT 59 /* Bad font file format */
  67. #define ENOSTR 60 /* Device not a stream */
  68. #define ENODATA 61 /* No data available */
  69. #define ETIME 62 /* Timer expired */
  70. #define ENOSR 63 /* Out of streams resources */
  71. #define ENONET 64 /* Machine is not on the network */
  72. #define ENOPKG 65 /* Package not installed */
  73. #define EREMOTE 66 /* Object is remote */
  74. #define ENOLINK 67 /* Link has been severed */
  75. #define EADV 68 /* Advertise error */
  76. #define ESRMNT 69 /* Srmount error */
  77. #define ECOMM 70 /* Communication error on send */
  78. #define EPROTO 71 /* Protocol error */
  79. #define EDOTDOT 73 /* RFS specific error */
  80. #define EMULTIHOP 74 /* Multihop attempted */
  81. #define EBADMSG 77 /* Not a data message */
  82. #define ENAMETOOLONG 78 /* File name too long */
  83. #define EOVERFLOW 79 /* Value too large for defined data type */
  84. #define ENOTUNIQ 80 /* Name not unique on network */
  85. #define EBADFD 81 /* File descriptor in bad state */
  86. #define EREMCHG 82 /* Remote address changed */
  87. #define ELIBACC 83 /* Can not access a needed shared library */
  88. #define ELIBBAD 84 /* Accessing a corrupted shared library */
  89. #define ELIBSCN 85 /* .lib section in a.out corrupted */
  90. #define ELIBMAX 86 /* Attempting to link in too many shared libraries */
  91. #define ELIBEXEC 87 /* Cannot exec a shared library directly */
  92. #define EILSEQ 88 /* Illegal byte sequence */
  93. #define ENOSYS 89 /* Function not implemented */
  94. #define ELOOP 90 /* Too many symbolic links encountered */
  95. #define ERESTART 91 /* Interrupted system call should be restarted */
  96. #define ESTRPIPE 92 /* Streams pipe error */
  97. #define ENOTEMPTY 93 /* Directory not empty */
  98. #define EUSERS 94 /* Too many users */
  99. #define ENOTSOCK 95 /* Socket operation on non-socket */
  100. #define EDESTADDRREQ 96 /* Destination address required */
  101. #define EMSGSIZE 97 /* Message too long */
  102. #define EPROTOTYPE 98 /* Protocol wrong type for socket */
  103. #define ENOPROTOOPT 99 /* Protocol not available */
  104. #define EPROTONOSUPPORT 120 /* Protocol not supported */
  105. #define ESOCKTNOSUPPORT 121 /* Socket type not supported */
  106. #define EOPNOTSUPP 122 /* Operation not supported on transport endpoint */
  107. #define EPFNOSUPPORT 123 /* Protocol family not supported */
  108. #define EAFNOSUPPORT 124 /* Address family not supported by protocol */
  109. #define EADDRINUSE 125 /* Address already in use */
  110. #define EADDRNOTAVAIL 126 /* Cannot assign requested address */
  111. #define ENETDOWN 127 /* Network is down */
  112. #define ENETUNREACH 128 /* Network is unreachable */
  113. #define ENETRESET 129 /* Network dropped connection because of reset */
  114. #define ECONNABORTED 130 /* Software caused connection abort */
  115. #define ECONNRESET 131 /* Connection reset by peer */
  116. #define ENOBUFS 132 /* No buffer space available */
  117. #define EISCONN 133 /* Transport endpoint is already connected */
  118. #define ENOTCONN 134 /* Transport endpoint is not connected */
  119. #define EUCLEAN 135 /* Structure needs cleaning */
  120. #define ENOTNAM 137 /* Not a XENIX named type file */
  121. #define ENAVAIL 138 /* No XENIX semaphores available */
  122. #define EISNAM 139 /* Is a named type file */
  123. #define EREMOTEIO 140 /* Remote I/O error */
  124. #define EINIT 141 /* Reserved */
  125. #define EREMDEV 142 /* Error 142 */
  126. #define ESHUTDOWN 143 /* Cannot send after transport endpoint shutdown */
  127. #define ETOOMANYREFS 144 /* Too many references: cannot splice */
  128. #define ETIMEDOUT 145 /* Connection timed out */
  129. #define ECONNREFUSED 146 /* Connection refused */
  130. #define EHOSTDOWN 147 /* Host is down */
  131. #define EHOSTUNREACH 148 /* No route to host */
  132. #define EWOULDBLOCK EAGAIN /* Operation would block */
  133. #define EALREADY 149 /* Operation already in progress */
  134. #define EINPROGRESS 150 /* Operation now in progress */
  135. #define ESTALE 151 /* Stale NFS file handle */
  136. #define ECANCELED 158 /* AIO operation canceled */
  137. /*
  138.  * These error are Linux extensions.
  139.  */
  140. #define ENOMEDIUM 159 /* No medium found */
  141. #define EMEDIUMTYPE 160 /* Wrong medium type */
  142. #define EDQUOT 1133 /* Quota exceeded */
  143. #ifdef __KERNEL__
  144. /* The biggest error number defined here or in <linux/errno.h>. */
  145. #define EMAXERRNO 1133
  146. #endif /* __KERNEL__ */
  147. #endif /* _ASM_ERRNO_H */