1 /* 2 * Copyright (C) 2015-2017 Alibaba Group Holding Limited 3 */ 4 5 #ifndef _SYS_ERRNO_H__ 6 #define _SYS_ERRNO_H__ 7 8 #define EPERM 1 /* Operation not permitted */ 9 #define ENOENT 2 /* No such file or directory */ 10 #define ESRCH 3 /* No such process */ 11 #define EINTR 4 /* Interrupted system call */ 12 #define EIO 5 /* I/O error */ 13 #define ENXIO 6 /* No such device or address */ 14 #define E2BIG 7 /* Arg list too long */ 15 #define ENOEXEC 8 /* Exec format error */ 16 #define EBADF 9 /* Bad file number */ 17 #define ECHILD 10 /* No child processes */ 18 #define EAGAIN 11 /* Try again */ 19 #define ENOMEM 12 /* Out of memory */ 20 #define EACCES 13 /* Permission denied */ 21 #define EFAULT 14 /* Bad address */ 22 #define ENOTBLK 15 /* Block device required */ 23 #define EBUSY 16 /* Device or resource busy */ 24 #define EEXIST 17 /* File exists */ 25 #define EXDEV 18 /* Cross-device link */ 26 #define ENODEV 19 /* No such device */ 27 #define ENOTDIR 20 /* Not a directory */ 28 #define EISDIR 21 /* Is a directory */ 29 #define EINVAL 22 /* Invalid argument */ 30 #define ENFILE 23 /* File table overflow */ 31 #define EMFILE 24 /* Too many open files */ 32 #define ENOTTY 25 /* Not a typewriter */ 33 #define ETXTBSY 26 /* Text file busy */ 34 #define EFBIG 27 /* File too large */ 35 #define ENOSPC 28 /* No space left on device */ 36 #define ESPIPE 29 /* Illegal seek */ 37 #define EROFS 30 /* Read-only file system */ 38 #define EMLINK 31 /* Too many links */ 39 #define EPIPE 32 /* Broken pipe */ 40 #define EDOM 33 /* Math argument out of domain of func */ 41 #define ERANGE 34 /* Math result not representable */ 42 #define EDEADLK 35 /* Resource deadlock would occur */ 43 #define ENAMETOOLONG 36 /* File name too long */ 44 #define ENOLCK 37 /* No record locks available */ 45 #define ENOSYS 38 /* Function not implemented */ 46 #define ENOTEMPTY 39 /* Directory not empty */ 47 #define ELOOP 40 /* Too many symbolic links encountered */ 48 #define EWOULDBLOCK EAGAIN /* Operation would block */ 49 #define ENOMSG 42 /* No message of desired type */ 50 #define EIDRM 43 /* Identifier removed */ 51 #define ECHRNG 44 /* Channel number out of range */ 52 #define EL2NSYNC 45 /* Level 2 not synchronized */ 53 #define EL3HLT 46 /* Level 3 halted */ 54 #define EL3RST 47 /* Level 3 reset */ 55 #define ELNRNG 48 /* Link number out of range */ 56 #define EUNATCH 49 /* Protocol driver not attached */ 57 #define ENOCSI 50 /* No CSI structure available */ 58 #define EL2HLT 51 /* Level 2 halted */ 59 #define EBADE 52 /* Invalid exchange */ 60 #define EBADR 53 /* Invalid request descriptor */ 61 #define EXFULL 54 /* Exchange full */ 62 #define ENOANO 55 /* No anode */ 63 #define EBADRQC 56 /* Invalid request code */ 64 #define EBADSLT 57 /* Invalid slot */ 65 66 #define EDEADLOCK EDEADLK 67 68 #define EBFONT 59 /* Bad font file format */ 69 #define ENOSTR 60 /* Device not a stream */ 70 #define ENODATA 61 /* No data available */ 71 #define ETIME 62 /* Timer expired */ 72 #define ENOSR 63 /* Out of streams resources */ 73 #define ENONET 64 /* Machine is not on the network */ 74 #define ENOPKG 65 /* Package not installed */ 75 #define EREMOTE 66 /* Object is remote */ 76 #define ENOLINK 67 /* Link has been severed */ 77 #define EADV 68 /* Advertise error */ 78 #define ESRMNT 69 /* Srmount error */ 79 #define ECOMM 70 /* Communication error on send */ 80 #define EPROTO 71 /* Protocol error */ 81 #define EMULTIHOP 72 /* Multihop attempted */ 82 #define EDOTDOT 73 /* RFS specific error */ 83 #define EBADMSG 74 /* Not a data message */ 84 #define EOVERFLOW 75 /* Value too large for defined data type */ 85 #define ENOTUNIQ 76 /* Name not unique on network */ 86 #define EBADFD 77 /* File descriptor in bad state */ 87 #define EREMCHG 78 /* Remote address changed */ 88 #define ELIBACC 79 /* Can not access a needed shared library */ 89 #define ELIBBAD 80 /* Accessing a corrupted shared library */ 90 #define ELIBSCN 81 /* .lib section in a.out corrupted */ 91 #define ELIBMAX 82 /* Attempting to link in too many shared libraries */ 92 #define ELIBEXEC 83 /* Cannot exec a shared library directly */ 93 #define EILSEQ 84 /* Illegal byte sequence */ 94 #define ERESTART 85 /* Interrupted system call should be restarted */ 95 #define ESTRPIPE 86 /* Streams pipe error */ 96 #define EUSERS 87 /* Too many users */ 97 #define ENOTSOCK 88 /* Socket operation on non-socket */ 98 #define EDESTADDRREQ 89 /* Destination address required */ 99 #define EMSGSIZE 90 /* Message too long */ 100 #define EPROTOTYPE 91 /* Protocol wrong type for socket */ 101 #define ENOPROTOOPT 92 /* Protocol not available */ 102 #define EPROTONOSUPPORT 93 /* Protocol not supported */ 103 #define ESOCKTNOSUPPORT 94 /* Socket type not supported */ 104 #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */ 105 #define EPFNOSUPPORT 96 /* Protocol family not supported */ 106 #define EAFNOSUPPORT 97 /* Address family not supported by protocol */ 107 #define EADDRINUSE 98 /* Address already in use */ 108 #define EADDRNOTAVAIL 99 /* Cannot assign requested address */ 109 #define ENETDOWN 100 /* Network is down */ 110 #define ENETUNREACH 101 /* Network is unreachable */ 111 #define ENETRESET 102 /* Network dropped connection because of reset */ 112 #define ECONNABORTED 103 /* Software caused connection abort */ 113 #define ECONNRESET 104 /* Connection reset by peer */ 114 #define ENOBUFS 105 /* No buffer space available */ 115 #define EISCONN 106 /* Transport endpoint is already connected */ 116 #define ENOTCONN 107 /* Transport endpoint is not connected */ 117 #define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */ 118 #define ETOOMANYREFS 109 /* Too many references: cannot splice */ 119 #define ETIMEDOUT 110 /* Connection timed out */ 120 #define ECONNREFUSED 111 /* Connection refused */ 121 #define EHOSTDOWN 112 /* Host is down */ 122 #define EHOSTUNREACH 113 /* No route to host */ 123 #define EALREADY 114 /* Operation already in progress */ 124 #define EINPROGRESS 115 /* Operation now in progress */ 125 #define ESTALE 116 /* Stale NFS file handle */ 126 #define EUCLEAN 117 /* Structure needs cleaning */ 127 #define ENOTNAM 118 /* Not a XENIX named type file */ 128 #define ENAVAIL 119 /* No XENIX semaphores available */ 129 #define EISNAM 120 /* Is a named type file */ 130 #define EREMOTEIO 121 /* Remote I/O error */ 131 #define EDQUOT 122 /* Quota exceeded */ 132 133 #define ENOMEDIUM 123 /* No medium found */ 134 #define EMEDIUMTYPE 124 /* Wrong medium type */ 135 136 137 #define ENSROK 0 /* DNS server returned answer with no data */ 138 #define ENOTSUP 134 /* Not supported */ 139 #define ENSRNODATA 160 /* DNS server returned answer with no data */ 140 #define ENSRFORMERR 161 /* DNS server claims query was misformatted */ 141 #define ENSRSERVFAIL 162 /* DNS server returned general failure */ 142 #define ENSRNOTFOUND 163 /* Domain name not found */ 143 #define ENSRNOTIMP 164 /* DNS server does not implement requested operation */ 144 #define ENSRREFUSED 165 /* DNS server refused query */ 145 #define ENSRBADQUERY 166 /* Misformatted DNS query */ 146 #define ENSRBADNAME 167 /* Misformatted domain name */ 147 #define ENSRBADFAMILY 168 /* Unsupported address family */ 148 #define ENSRBADRESP 169 /* Misformatted DNS reply */ 149 #define ENSRCONNREFUSED 170 /* Could not contact DNS servers */ 150 #define ENSRTIMEOUT 171 /* Timeout while contacting DNS servers */ 151 #define ENSROF 172 /* End of file */ 152 #define ENSRFILE 173 /* Error reading file */ 153 #define ENSRNOMEM 174 /* Out of memory */ 154 #define ENSRDESTRUCTION 175 /* Application terminated lookup */ 155 #define ENSRQUERYDOMAINTOOLONG 176 /* Domain name is too long */ 156 #define ENSRCNAMELOOP 177 /* Domain name is too long */ 157 158 #endif /* _SYS_ERROR_H */ 159