00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef __SYSINTERF_ERRNO_H__
00041 #define __SYSINTERF_ERRNO_H__
00042
00043
00044
00045
00046
00047
00048 #define EZERO 0
00050 #define EPERM 1
00051 #define ENOENT 2
00052 #define ESRCH 3
00053 #define EINTR 4
00054 #define EIO 5
00055 #define ENXIO 6
00056 #define E2BIG 7
00057 #define ENOEXEC 8
00058 #define EBADF 9
00059 #define ECHILD 10
00060 #define EDEADLK 11
00062 #define ENOMEM 12
00063 #define EACCES 13
00064 #define EFAULT 14
00065 #define ENOTBLK 15
00066 #define EBUSY 16
00067 #define EEXIST 17
00068 #define EXDEV 18
00069 #define ENODEV 19
00070 #define ENOTDIR 20
00071 #define EISDIR 21
00072 #define EINVAL 22
00073 #define ENFILE 23
00074 #define EMFILE 24
00075 #define ENOTTY 25
00076 #define ETXTBSY 26
00077 #define EFBIG 27
00078 #define ENOSPC 28
00079 #define ESPIPE 29
00080 #define EROFS 30
00081 #define EMLINK 31
00082 #define EPIPE 32
00083 #define EDOM 33
00084 #define ERANGE 34
00085 #define EAGAIN 35
00086 #define EWOULDBLOCK EAGAIN
00087 #define EINPROGRESS 36
00088 #define EALREADY 37
00090
00091 #define ENOTSOCK 38
00092 #define EDESTADDRREQ 39
00093 #define EMSGSIZE 40
00094 #define EPROTOTYPE 41
00095 #define ENOPROTOOPT 42
00096 #define EPROTONOSUPPORT 43
00097 #define ESOCKTNOSUPPORT 44
00098 #define EOPNOTSUPP 45
00099 #define EPFNOSUPPORT 46
00100 #define EAFNOSUPPORT 47
00101 #define EADDRINUSE 48
00102 #define EADDRNOTAVAIL 49
00104
00105 #define ENETDOWN 50
00106 #define ENETUNREACH 51
00107 #define ENETRESET 52
00108 #define ECONNABORTED 53
00109 #define ECONNRESET 54
00110 #define ENOBUFS 55
00111 #define EISCONN 56
00112 #define ENOTCONN 57
00113 #define ESHUTDOWN 58
00114 #define ETOOMANYREFS 59
00115 #define ETIMEDOUT 60
00116 #define ECONNREFUSED 61
00117 #define ELOOP 62
00118 #define ENAMETOOLONG 63
00120
00121 #define EHOSTDOWN 64
00122 #define EHOSTUNREACH 65
00123 #define ENOTEMPTY 66
00125
00126 #define EPROCLIM 67
00127 #define EUSERS 68
00128 #define EDQUOT 69
00130
00131 #define ESTALE 70
00132 #define EREMOTE 71
00133 #define EBADRPC 72
00134 #define ERPCMISMATCH 73
00135 #define EPROGUNAVAIL 74
00136 #define EPROGMISMATCH 75
00137 #define EPROCUNAVAIL 76
00139 #define ENOLCK 77
00140 #define ENOSYS 78
00142 #define EFTYPE 79
00143 #define EAUTH 80
00144 #define ENEEDAUTH 81
00146
00147 #define EIDRM 82
00148 #define ENOMSG 83
00149 #define EOVERFLOW 84
00151 #define EILSEQ 85
00153 #define ELAST 85
00155 #endif