Subversion Repositories Kolibri OS

Rev

Rev 8537 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8537 Rev 8538
Line 126... Line 126...
126
#define ENMFILE 89      /* No more files */
126
#define ENMFILE 89      /* No more files */
127
#endif
127
#endif
128
#define ENOTEMPTY 90	/* Directory not empty */
128
#define ENOTEMPTY 90	/* Directory not empty */
129
#define ENAMETOOLONG 91	/* File or path name too long */
129
#define ENAMETOOLONG 91	/* File or path name too long */
130
#define ELOOP 92	/* Too many symbolic links */
130
#define ELOOP 92	/* Too many symbolic links */
131
#define EOPNOTSUPP 4	/* Operation not supported on socket */
131
#define EOPNOTSUPP 95	/* Operation not supported on socket */
132
#define EPFNOSUPPORT 96 /* Protocol family not supported */
132
#define EPFNOSUPPORT 96 /* Protocol family not supported */
133
#define ECONNRESET 51  /* Connection reset by peer */
133
#define ECONNRESET 104  /* Connection reset by peer */
134
#define ENOBUFS 1	/* No buffer space available */
134
#define ENOBUFS 105	/* No buffer space available */
135
#define EAFNOSUPPORT 106 /* Address family not supported by protocol family */
135
#define EAFNOSUPPORT 106 /* Address family not supported by protocol family */
136
#define EPROTOTYPE 107	/* Protocol wrong type for socket */
136
#define EPROTOTYPE 107	/* Protocol wrong type for socket */
137
#define ENOTSOCK 108	/* Socket operation on non-socket */
137
#define ENOTSOCK 108	/* Socket operation on non-socket */
138
#define ENOPROTOOPT 109	/* Protocol not available */
138
#define ENOPROTOOPT 109	/* Protocol not available */
139
#ifdef __LINUX_ERRNO_EXTENSIONS__
139
#ifdef __LINUX_ERRNO_EXTENSIONS__
140
#define ESHUTDOWN 110	/* Can't send after socket shutdown */
140
#define ESHUTDOWN 110	/* Can't send after socket shutdown */
141
#endif
141
#endif
142
#define ECONNREFUSED 61	/* Connection refused */
142
#define ECONNREFUSED 111	/* Connection refused */
143
#define EADDRINUSE 20		/* Address already in use */
143
#define EADDRINUSE 112		/* Address already in use */
144
#define ECONNABORTED 53	/* Software caused connection abort */
144
#define ECONNABORTED 113	/* Software caused connection abort */
145
#define ENETUNREACH 114		/* Network is unreachable */
145
#define ENETUNREACH 114		/* Network is unreachable */
146
#define ENETDOWN 115		/* Network interface is not configured */
146
#define ENETDOWN 115		/* Network interface is not configured */
147
#define ETIMEDOUT 60		/* Connection timed out */
147
#define ETIMEDOUT 116		/* Connection timed out */
148
#define EHOSTDOWN 117		/* Host is down */
148
#define EHOSTDOWN 117		/* Host is down */
149
#define EHOSTUNREACH 118	/* Host is unreachable */
149
#define EHOSTUNREACH 118	/* Host is unreachable */
150
#define EINPROGRESS 2		/* Connection already in progress */
150
#define EINPROGRESS 119		/* Connection already in progress */
151
#define EALREADY 10		/* Socket already connected */
151
#define EALREADY 120		/* Socket already connected */
152
#define EDESTADDRREQ 121	/* Destination address required */
152
#define EDESTADDRREQ 121	/* Destination address required */
153
#define EMSGSIZE 12		/* Message too long */
153
#define EMSGSIZE 122		/* Message too long */
154
#define EPROTONOSUPPORT 123	/* Unknown protocol */
154
#define EPROTONOSUPPORT 123	/* Unknown protocol */
155
#ifdef __LINUX_ERRNO_EXTENSIONS__
155
#ifdef __LINUX_ERRNO_EXTENSIONS__
156
#define ESOCKTNOSUPPORT 124	/* Socket type not supported */
156
#define ESOCKTNOSUPPORT 124	/* Socket type not supported */
157
#endif
157
#endif
158
#define EADDRNOTAVAIL 125	/* Address not available */
158
#define EADDRNOTAVAIL 125	/* Address not available */
159
#define ENETRESET 126		/* Connection aborted by network */
159
#define ENETRESET 126		/* Connection aborted by network */
160
#define EISCONN 56		/* Socket is already connected */
160
#define EISCONN 127		/* Socket is already connected */
161
#define ENOTCONN 9		/* Socket is not connected */
161
#define ENOTCONN 128		/* Socket is not connected */
162
#define EINVALUE 11
-
 
163
#define ENOMEM_S 18
-
 
164
 
-
 
165
#define ETOOMANYREFS 129
162
#define ETOOMANYREFS 129
166
#ifdef __LINUX_ERRNO_EXTENSIONS__
163
#ifdef __LINUX_ERRNO_EXTENSIONS__
167
#define EPROCLIM 130
164
#define EPROCLIM 130
168
#define EUSERS 131
165
#define EUSERS 131
169
#endif
166
#endif
Line 183... Line 180...
183
#define ENOTRECOVERABLE 141	/* State not recoverable */
180
#define ENOTRECOVERABLE 141	/* State not recoverable */
184
#define EOWNERDEAD 142	/* Previous owner died */
181
#define EOWNERDEAD 142	/* Previous owner died */
185
#ifdef __LINUX_ERRNO_EXTENSIONS__
182
#ifdef __LINUX_ERRNO_EXTENSIONS__
186
#define ESTRPIPE 143	/* Streams pipe error */
183
#define ESTRPIPE 143	/* Streams pipe error */
187
#endif
184
#endif
188
#define EWOULDBLOCK 6	/* Operation would block */
185
#define EWOULDBLOCK EAGAIN	/* Operation would block */
Line 189... Line 186...
189
 
186
 
Line 190... Line 187...
190
#define __ELASTERROR 2000	/* Users can add values starting here */
187
#define __ELASTERROR 2000	/* Users can add values starting here */
191
 
188