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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _PARISC_ERRNO_H
  2. #define _PARISC_ERRNO_H
  3. #define EPERM  1 /* Operation not permitted */
  4. #define ENOENT  2 /* No such file or directory */
  5. #define ESRCH  3 /* No such process */
  6. #define EINTR  4 /* Interrupted system call */
  7. #define EIO  5 /* I/O error */
  8. #define ENXIO  6 /* No such device or address */
  9. #define E2BIG  7 /* Arg list too long */
  10. #define ENOEXEC  8 /* Exec format error */
  11. #define EBADF  9 /* Bad file number */
  12. #define ECHILD 10 /* No child processes */
  13. #define EAGAIN 11 /* Try again */
  14. #define ENOMEM 12 /* Out of memory */
  15. #define EACCES 13 /* Permission denied */
  16. #define EFAULT 14 /* Bad address */
  17. #define ENOTBLK 15 /* Block device required */
  18. #define EBUSY 16 /* Device or resource busy */
  19. #define EEXIST 17 /* File exists */
  20. #define EXDEV 18 /* Cross-device link */
  21. #define ENODEV 19 /* No such device */
  22. #define ENOTDIR 20 /* Not a directory */
  23. #define EISDIR 21 /* Is a directory */
  24. #define EINVAL 22 /* Invalid argument */
  25. #define ENFILE 23 /* File table overflow */
  26. #define EMFILE 24 /* Too many open files */
  27. #define ENOTTY 25 /* Not a typewriter */
  28. #define ETXTBSY 26 /* Text file busy */
  29. #define EFBIG 27 /* File too large */
  30. #define ENOSPC 28 /* No space left on device */
  31. #define ESPIPE 29 /* Illegal seek */
  32. #define EROFS 30 /* Read-only file system */
  33. #define EMLINK 31 /* Too many links */
  34. #define EPIPE 32 /* Broken pipe */
  35. #define EDOM 33 /* Math argument out of domain of func */
  36. #define ERANGE 34 /* Math result not representable */
  37. #define ENOMSG 35 /* No message of desired type */
  38. #define EIDRM 36 /* Identifier removed */
  39. #define ECHRNG 37 /* Channel number out of range */
  40. #define EL2NSYNC 38 /* Level 2 not synchronized */
  41. #define EL3HLT 39 /* Level 3 halted */
  42. #define EL3RST 40 /* Level 3 reset */
  43. #define ELNRNG 41 /* Link number out of range */
  44. #define EUNATCH 42 /* Protocol driver not attached */
  45. #define ENOCSI 43 /* No CSI structure available */
  46. #define EL2HLT 44 /* Level 2 halted */
  47. #define EDEADLK 45 /* Resource deadlock would occur */
  48. #define EDEADLOCK EDEADLK
  49. #define ENOLCK 46 /* No record locks available */
  50. #define EILSEQ 47 /* Illegal byte sequence */
  51. #define ENONET 50 /* Machine is not on the network */
  52. #define ENODATA 51 /* No data available */
  53. #define ETIME 52 /* Timer expired */
  54. #define ENOSR 53 /* Out of streams resources */
  55. #define ENOSTR 54 /* Device not a stream */
  56. #define ENOPKG 55 /* Package not installed */
  57. #define ENOLINK 57 /* Link has been severed */
  58. #define EADV 58 /* Advertise error */
  59. #define ESRMNT 59 /* Srmount error */
  60. #define ECOMM 60 /* Communication error on send */
  61. #define EPROTO 61 /* Protocol error */
  62. #define EMULTIHOP 64 /* Multihop attempted */
  63. #define EDOTDOT 66 /* RFS specific error */
  64. #define EBADMSG 67 /* Not a data message */
  65. #define EUSERS 68 /* Too many users */
  66. #define EDQUOT 69 /* Quota exceeded */
  67. #define ESTALE 70 /* Stale NFS file handle */
  68. #define EREMOTE 71 /* Object is remote */
  69. #define EOVERFLOW 72 /* Value too large for defined data type */
  70. /* these errnos are defined by Linux but not HPUX. */
  71. #define EBADE 160 /* Invalid exchange */
  72. #define EBADR 161 /* Invalid request descriptor */
  73. #define EXFULL 162 /* Exchange full */
  74. #define ENOANO 163 /* No anode */
  75. #define EBADRQC 164 /* Invalid request code */
  76. #define EBADSLT 165 /* Invalid slot */
  77. #define EBFONT 166 /* Bad font file format */
  78. #define ENOTUNIQ 167 /* Name not unique on network */
  79. #define EBADFD 168 /* File descriptor in bad state */
  80. #define EREMCHG 169 /* Remote address changed */
  81. #define ELIBACC 170 /* Can not access a needed shared library */
  82. #define ELIBBAD 171 /* Accessing a corrupted shared library */
  83. #define ELIBSCN 172 /* .lib section in a.out corrupted */
  84. #define ELIBMAX 173 /* Attempting to link in too many shared libraries */
  85. #define ELIBEXEC 174 /* Cannot exec a shared library directly */
  86. #define ERESTART 175 /* Interrupted system call should be restarted */
  87. #define ESTRPIPE 176 /* Streams pipe error */
  88. #define EUCLEAN 177 /* Structure needs cleaning */
  89. #define ENOTNAM 178 /* Not a XENIX named type file */
  90. #define ENAVAIL 179 /* No XENIX semaphores available */
  91. #define EISNAM 180 /* Is a named type file */
  92. #define EREMOTEIO 181 /* Remote I/O error */
  93. #define ENOMEDIUM 182 /* No medium found */
  94. #define EMEDIUMTYPE 183 /* Wrong medium type */
  95. /* We now return you to your regularly scheduled HPUX. */
  96. #define ENOSYM 215 /* symbol does not exist in executable */
  97. #define ENOTSOCK 216 /* Socket operation on non-socket */
  98. #define EDESTADDRREQ 217 /* Destination address required */
  99. #define EMSGSIZE 218 /* Message too long */
  100. #define EPROTOTYPE 219 /* Protocol wrong type for socket */
  101. #define ENOPROTOOPT 220 /* Protocol not available */
  102. #define EPROTONOSUPPORT 221 /* Protocol not supported */
  103. #define ESOCKTNOSUPPORT 222 /* Socket type not supported */
  104. #define EOPNOTSUPP 223 /* Operation not supported on transport endpoint */
  105. #define EPFNOSUPPORT 224 /* Protocol family not supported */
  106. #define EAFNOSUPPORT 225 /* Address family not supported by protocol */
  107. #define EADDRINUSE 226 /* Address already in use */
  108. #define EADDRNOTAVAIL 227 /* Cannot assign requested address */
  109. #define ENETDOWN 228 /* Network is down */
  110. #define ENETUNREACH 229 /* Network is unreachable */
  111. #define ENETRESET 230 /* Network dropped connection because of reset */
  112. #define ECONNABORTED 231 /* Software caused connection abort */
  113. #define ECONNRESET 232 /* Connection reset by peer */
  114. #define ENOBUFS 233 /* No buffer space available */
  115. #define EISCONN 234 /* Transport endpoint is already connected */
  116. #define ENOTCONN 235 /* Transport endpoint is not connected */
  117. #define ESHUTDOWN 236 /* Cannot send after transport endpoint shutdown */
  118. #define ETOOMANYREFS 237 /* Too many references: cannot splice */
  119. #define EREFUSED ECONNREFUSED /* for HP's NFS apparently */
  120. #define ETIMEDOUT 238 /* Connection timed out */
  121. #define ECONNREFUSED 239 /* Connection refused */
  122. #define EREMOTERELEASE 240 /* Remote peer released connection */
  123. #define EHOSTDOWN 241 /* Host is down */
  124. #define EHOSTUNREACH 242 /* No route to host */
  125. #define EALREADY 244 /* Operation already in progress */
  126. #define EINPROGRESS 245 /* Operation now in progress */
  127. #define EWOULDBLOCK 246 /* Operation would block (Linux returns EAGAIN) */
  128. #define ENOTEMPTY 247 /* Directory not empty */
  129. #define ENAMETOOLONG 248 /* File name too long */
  130. #define ELOOP 249 /* Too many symbolic links encountered */
  131. #define ENOSYS 251 /* Function not implemented */
  132. #define ENOTSUP 252 /* Function not implemented (POSIX.4 / HPUX) */
  133. #define ECANCELLED 253 /* aio request was canceled before complete (POSIX.4 / HPUX) */
  134. #endif