1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
/* This file generated by errnos.awk from
errno.texi
mach/message.h
mach/kern_return.h
mach/mig_errors.h
device/device_types.h
Do not edit this file; edit errnos.awk and regenerate it. */
#ifndef _BITS_ERRNO_H
#define _BITS_ERRNO_H 1
#if !defined _ERRNO_H
# error "Never include <bits/errno.h> directly; use <errno.h> instead."
#endif
#ifndef __ASSEMBLER__
enum __error_t_codes
{
/* The value zero always means success and it is perfectly fine
for code to use 0 explicitly (or implicitly, e.g. via Boolean
coercion.) Having an enum entry for zero both makes the
debugger print the name for error_t-typed zero values, and
prevents the compiler from issuing warnings about 'case 0:'
in a switch on an error_t-typed value. */
ESUCCESS = 0,
/* The Hurd uses Mach error system 0x10, subsystem 0. */
EPERM = 0x40000001, /* Operation not permitted */
ENOENT = 0x40000002, /* No such file or directory */
ESRCH = 0x40000003, /* No such process */
EINTR = 0x40000004, /* Interrupted system call */
EIO = 0x40000005, /* Input/output error */
ENXIO = 0x40000006, /* No such device or address */
E2BIG = 0x40000007, /* Argument list too long */
ENOEXEC = 0x40000008, /* Exec format error */
EBADF = 0x40000009, /* Bad file descriptor */
ECHILD = 0x4000000a, /* No child processes */
EDEADLK = 0x4000000b, /* Resource deadlock avoided */
ENOMEM = 0x4000000c, /* Cannot allocate memory */
EACCES = 0x4000000d, /* Permission denied */
EFAULT = 0x4000000e, /* Bad address */
ENOTBLK = 0x4000000f, /* Block device required */
EBUSY = 0x40000010, /* Device or resource busy */
EEXIST = 0x40000011, /* File exists */
EXDEV = 0x40000012, /* Invalid cross-device link */
ENODEV = 0x40000013, /* No such device */
ENOTDIR = 0x40000014, /* Not a directory */
EISDIR = 0x40000015, /* Is a directory */
EINVAL = 0x40000016, /* Invalid argument */
EMFILE = 0x40000018, /* Too many open files */
ENFILE = 0x40000017, /* Too many open files in system */
ENOTTY = 0x40000019, /* Inappropriate ioctl for device */
ETXTBSY = 0x4000001a, /* Text file busy */
EFBIG = 0x4000001b, /* File too large */
ENOSPC = 0x4000001c, /* No space left on device */
ESPIPE = 0x4000001d, /* Illegal seek */
EROFS = 0x4000001e, /* Read-only file system */
EMLINK = 0x4000001f, /* Too many links */
EPIPE = 0x40000020, /* Broken pipe */
EDOM = 0x40000021, /* Numerical argument out of domain */
ERANGE = 0x40000022, /* Numerical result out of range */
EAGAIN = 0x40000023, /* Resource temporarily unavailable */
EINPROGRESS = 0x40000024, /* Operation now in progress */
EALREADY = 0x40000025, /* Operation already in progress */
ENOTSOCK = 0x40000026, /* Socket operation on non-socket */
EMSGSIZE = 0x40000028, /* Message too long */
EPROTOTYPE = 0x40000029, /* Protocol wrong type for socket */
ENOPROTOOPT = 0x4000002a, /* Protocol not available */
EPROTONOSUPPORT = 0x4000002b, /* Protocol not supported */
ESOCKTNOSUPPORT = 0x4000002c, /* Socket type not supported */
EOPNOTSUPP = 0x4000002d, /* Operation not supported */
EPFNOSUPPORT = 0x4000002e, /* Protocol family not supported */
EAFNOSUPPORT = 0x4000002f, /* Address family not supported by protocol */
EADDRINUSE = 0x40000030, /* Address already in use */
EADDRNOTAVAIL = 0x40000031, /* Cannot assign requested address */
ENETDOWN = 0x40000032, /* Network is down */
ENETUNREACH = 0x40000033, /* Network is unreachable */
ENETRESET = 0x40000034, /* Network dropped connection on reset */
ECONNABORTED = 0x40000035, /* Software caused connection abort */
ECONNRESET = 0x40000036, /* Connection reset by peer */
ENOBUFS = 0x40000037, /* No buffer space available */
EISCONN = 0x40000038, /* Transport endpoint is already connected */
ENOTCONN = 0x40000039, /* Transport endpoint is not connected */
EDESTADDRREQ = 0x40000027, /* Destination address required */
ESHUTDOWN = 0x4000003a, /* Cannot send after transport endpoint shutdown */
ETOOMANYREFS = 0x4000003b, /* Too many references: cannot splice */
ETIMEDOUT = 0x4000003c, /* Connection timed out */
ECONNREFUSED = 0x4000003d, /* Connection refused */
ELOOP = 0x4000003e, /* Too many levels of symbolic links */
ENAMETOOLONG = 0x4000003f, /* File name too long */
EHOSTDOWN = 0x40000040, /* Host is down */
EHOSTUNREACH = 0x40000041, /* No route to host */
ENOTEMPTY = 0x40000042, /* Directory not empty */
EPROCLIM = 0x40000043, /* Too many processes */
EUSERS = 0x40000044, /* Too many users */
EDQUOT = 0x40000045, /* Disk quota exceeded */
ESTALE = 0x40000046, /* Stale file handle */
EREMOTE = 0x40000047, /* Object is remote */
EBADRPC = 0x40000048, /* RPC struct is bad */
ERPCMISMATCH = 0x40000049, /* RPC version wrong */
EPROGUNAVAIL = 0x4000004a, /* RPC program not available */
EPROGMISMATCH = 0x4000004b, /* RPC program version wrong */
EPROCUNAVAIL = 0x4000004c, /* RPC bad procedure for program */
ENOLCK =
|