Fix implicit declaration
[glibc.git] / sysdeps / gnu / errlist.c
blob2303453b58381fea19be659572b5f6087754e0f1
1 /* This file is generated from errno.texi by errlist.awk. */
3 #include <errno.h>
4 #include <libintl.h>
6 #ifndef ERR_REMAP
7 # define ERR_REMAP(n) n
8 #endif
10 #if !defined EMIT_ERR_MAX && !defined ERRLIST_NO_COMPAT
11 # include <errlist-compat.h>
12 #endif
13 #ifdef ERR_MAX
14 # define ERRLIST_SIZE ERR_MAX + 1
15 #else
16 # define ERRLIST_SIZE
17 #endif
18 const char *const _sys_errlist_internal[ERRLIST_SIZE] =
20 [0] = N_("Success"),
21 #ifdef EPERM
23 TRANS Operation not permitted; only the owner of the file (or other resource)
24 TRANS or processes with special privileges can perform the operation. */
25 [ERR_REMAP (EPERM)] = N_("Operation not permitted"),
26 # if EPERM > ERR_MAX
27 # undef ERR_MAX
28 # define ERR_MAX EPERM
29 # endif
30 #endif
31 #ifdef ENOENT
33 TRANS No such file or directory. This is a ``file doesn't exist'' error
34 TRANS for ordinary files that are referenced in contexts where they are
35 TRANS expected to already exist. */
36 [ERR_REMAP (ENOENT)] = N_("No such file or directory"),
37 # if ENOENT > ERR_MAX
38 # undef ERR_MAX
39 # define ERR_MAX ENOENT
40 # endif
41 #endif
42 #ifdef ESRCH
44 TRANS No process matches the specified process ID. */
45 [ERR_REMAP (ESRCH)] = N_("No such process"),
46 # if ESRCH > ERR_MAX
47 # undef ERR_MAX
48 # define ERR_MAX ESRCH
49 # endif
50 #endif
51 #ifdef EINTR
53 TRANS Interrupted function call; an asynchronous signal occurred and prevented
54 TRANS completion of the call. When this happens, you should try the call
55 TRANS again.
56 TRANS
57 TRANS You can choose to have functions resume after a signal that is handled,
58 TRANS rather than failing with @code{EINTR}; see @ref{Interrupted
59 TRANS Primitives}. */
60 [ERR_REMAP (EINTR)] = N_("Interrupted system call"),
61 # if EINTR > ERR_MAX
62 # undef ERR_MAX
63 # define ERR_MAX EINTR
64 # endif
65 #endif
66 #ifdef EIO
68 TRANS Input/output error; usually used for physical read or write errors. */
69 [ERR_REMAP (EIO)] = N_("Input/output error"),
70 # if EIO > ERR_MAX
71 # undef ERR_MAX
72 # define ERR_MAX EIO
73 # endif
74 #endif
75 #ifdef ENXIO
77 TRANS No such device or address. The system tried to use the device
78 TRANS represented by a file you specified, and it couldn't find the device.
79 TRANS This can mean that the device file was installed incorrectly, or that
80 TRANS the physical device is missing or not correctly attached to the
81 TRANS computer. */
82 [ERR_REMAP (ENXIO)] = N_("No such device or address"),
83 # if ENXIO > ERR_MAX
84 # undef ERR_MAX
85 # define ERR_MAX ENXIO
86 # endif
87 #endif
88 #ifdef E2BIG
90 TRANS Argument list too long; used when the arguments passed to a new program
91 TRANS being executed with one of the @code{exec} functions (@pxref{Executing a
92 TRANS File}) occupy too much memory space. This condition never arises on
93 TRANS @gnuhurdsystems{}. */
94 [ERR_REMAP (E2BIG)] = N_("Argument list too long"),
95 # if E2BIG > ERR_MAX
96 # undef ERR_MAX
97 # define ERR_MAX E2BIG
98 # endif
99 #endif
100 #ifdef ENOEXEC
102 TRANS Invalid executable file format. This condition is detected by the
103 TRANS @code{exec} functions; see @ref{Executing a File}. */
104 [ERR_REMAP (ENOEXEC)] = N_("Exec format error"),
105 # if ENOEXEC > ERR_MAX
106 # undef ERR_MAX
107 # define ERR_MAX ENOEXEC
108 # endif
109 #endif
110 #ifdef EBADF
112 TRANS Bad file descriptor; for example, I/O on a descriptor that has been
113 TRANS closed or reading from a descriptor open only for writing (or vice
114 TRANS versa). */
115 [ERR_REMAP (EBADF)] = N_("Bad file descriptor"),
116 # if EBADF > ERR_MAX
117 # undef ERR_MAX
118 # define ERR_MAX EBADF
119 # endif
120 #endif
121 #ifdef ECHILD
123 TRANS There are no child processes. This error happens on operations that are
124 TRANS supposed to manipulate child processes, when there aren't any processes
125 TRANS to manipulate. */
126 [ERR_REMAP (ECHILD)] = N_("No child processes"),
127 # if ECHILD > ERR_MAX
128 # undef ERR_MAX
129 # define ERR_MAX ECHILD
130 # endif
131 #endif
132 #ifdef EDEADLK
134 TRANS Deadlock avoided; allocating a system resource would have resulted in a
135 TRANS deadlock situation. The system does not guarantee that it will notice
136 TRANS all such situations. This error means you got lucky and the system
137 TRANS noticed; it might just hang. @xref{File Locks}, for an example. */
138 [ERR_REMAP (EDEADLK)] = N_("Resource deadlock avoided"),
139 # if EDEADLK > ERR_MAX
140 # undef ERR_MAX
141 # define ERR_MAX EDEADLK
142 # endif
143 #endif
144 #ifdef ENOMEM
146 TRANS No memory available. The system cannot allocate more virtual memory
147 TRANS because its capacity is full. */
148 [ERR_REMAP (ENOMEM)] = N_("Cannot allocate memory"),
149 # if ENOMEM > ERR_MAX
150 # undef ERR_MAX
151 # define ERR_MAX ENOMEM
152 # endif
153 #endif
154 #ifdef EACCES
156 TRANS Permission denied; the file permissions do not allow the attempted operation. */
157 [ERR_REMAP (EACCES)] = N_("Permission denied"),
158 # if EACCES > ERR_MAX
159 # undef ERR_MAX
160 # define ERR_MAX EACCES
161 # endif
162 #endif
163 #ifdef EFAULT
165 TRANS Bad address; an invalid pointer was detected.
166 TRANS On @gnuhurdsystems{}, this error never happens; you get a signal instead. */
167 [ERR_REMAP (EFAULT)] = N_("Bad address"),
168 # if EFAULT > ERR_MAX
169 # undef ERR_MAX
170 # define ERR_MAX EFAULT
171 # endif
172 #endif
173 #ifdef ENOTBLK
175 TRANS A file that isn't a block special file was given in a situation that
176 TRANS requires one. For example, trying to mount an ordinary file as a file
177 TRANS system in Unix gives this error. */
178 [ERR_REMAP (ENOTBLK)] = N_("Block device required"),
179 # if ENOTBLK > ERR_MAX
180 # undef ERR_MAX
181 # define ERR_MAX ENOTBLK
182 # endif
183 #endif
184 #ifdef EBUSY
186 TRANS Resource busy; a system resource that can't be shared is already in use.
187 TRANS For example, if you try to delete a file that is the root of a currently
188 TRANS mounted filesystem, you get this error. */
189 [ERR_REMAP (EBUSY)] = N_("Device or resource busy"),
190 # if EBUSY > ERR_MAX
191 # undef ERR_MAX
192 # define ERR_MAX EBUSY
193 # endif
194 #endif
195 #ifdef EEXIST
197 TRANS File exists; an existing file was specified in a context where it only
198 TRANS makes sense to specify a new file. */
199 [ERR_REMAP (EEXIST)] = N_("File exists"),
200 # if EEXIST > ERR_MAX
201 # undef ERR_MAX
202 # define ERR_MAX EEXIST
203 # endif
204 #endif
205 #ifdef EXDEV
207 TRANS An attempt to make an improper link across file systems was detected.
208 TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but
209 TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). */
210 [ERR_REMAP (EXDEV)] = N_("Invalid cross-device link"),
211 # if EXDEV > ERR_MAX
212 # undef ERR_MAX
213 # define ERR_MAX EXDEV
214 # endif
215 #endif
216 #ifdef ENODEV
218 TRANS The wrong type of device was given to a function that expects a
219 TRANS particular sort of device. */
220 [ERR_REMAP (ENODEV)] = N_("No such device"),
221 # if ENODEV > ERR_MAX
222 # undef ERR_MAX
223 # define ERR_MAX ENODEV
224 # endif
225 #endif
226 #ifdef ENOTDIR
228 TRANS A file that isn't a directory was specified when a directory is required. */
229 [ERR_REMAP (ENOTDIR)] = N_("Not a directory"),
230 # if ENOTDIR > ERR_MAX
231 # undef ERR_MAX
232 # define ERR_MAX ENOTDIR
233 # endif
234 #endif
235 #ifdef EISDIR
237 TRANS File is a directory; you cannot open a directory for writing,
238 TRANS or create or remove hard links to it. */
239 [ERR_REMAP (EISDIR)] = N_("Is a directory"),
240 # if EISDIR > ERR_MAX
241 # undef ERR_MAX
242 # define ERR_MAX EISDIR
243 # endif
244 #endif
245 #ifdef EINVAL
247 TRANS Invalid argument. This is used to indicate various kinds of problems
248 TRANS with passing the wrong argument to a library function. */
249 [ERR_REMAP (EINVAL)] = N_("Invalid argument"),
250 # if EINVAL > ERR_MAX
251 # undef ERR_MAX
252 # define ERR_MAX EINVAL
253 # endif
254 #endif
255 #ifdef EMFILE
257 TRANS The current process has too many files open and can't open any more.
258 TRANS Duplicate descriptors do count toward this limit.
259 TRANS
260 TRANS In BSD and GNU, the number of open files is controlled by a resource
261 TRANS limit that can usually be increased. If you get this error, you might
262 TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited;
263 TRANS @pxref{Limits on Resources}. */
264 [ERR_REMAP (EMFILE)] = N_("Too many open files"),
265 # if EMFILE > ERR_MAX
266 # undef ERR_MAX
267 # define ERR_MAX EMFILE
268 # endif
269 #endif
270 #ifdef ENFILE
272 TRANS There are too many distinct file openings in the entire system. Note
273 TRANS that any number of linked channels count as just one file opening; see
274 TRANS @ref{Linked Channels}. This error never occurs on @gnuhurdsystems{}. */
275 [ERR_REMAP (ENFILE)] = N_("Too many open files in system"),
276 # if ENFILE > ERR_MAX
277 # undef ERR_MAX
278 # define ERR_MAX ENFILE
279 # endif
280 #endif
281 #ifdef ENOTTY
283 TRANS Inappropriate I/O control operation, such as trying to set terminal
284 TRANS modes on an ordinary file. */
285 [ERR_REMAP (ENOTTY)] = N_("Inappropriate ioctl for device"),
286 # if ENOTTY > ERR_MAX
287 # undef ERR_MAX
288 # define ERR_MAX ENOTTY
289 # endif
290 #endif
291 #ifdef ETXTBSY
293 TRANS An attempt to execute a file that is currently open for writing, or
294 TRANS write to a file that is currently being executed. Often using a
295 TRANS debugger to run a program is considered having it open for writing and
296 TRANS will cause this error. (The name stands for ``text file busy''.) This
297 TRANS is not an error on @gnuhurdsystems{}; the text is copied as necessary. */
298 [ERR_REMAP (ETXTBSY)] = N_("Text file busy"),
299 # if ETXTBSY > ERR_MAX
300 # undef ERR_MAX
301 # define ERR_MAX ETXTBSY
302 # endif
303 #endif
304 #ifdef EFBIG
306 TRANS File too big; the size of a file would be larger than allowed by the system. */
307 [ERR_REMAP (EFBIG)] = N_("File too large"),
308 # if EFBIG > ERR_MAX
309 # undef ERR_MAX
310 # define ERR_MAX EFBIG
311 # endif
312 #endif
313 #ifdef ENOSPC
315 TRANS No space left on device; write operation on a file failed because the
316 TRANS disk is full. */
317 [ERR_REMAP (ENOSPC)] = N_("No space left on device"),
318 # if ENOSPC > ERR_MAX
319 # undef ERR_MAX
320 # define ERR_MAX ENOSPC
321 # endif
322 #endif
323 #ifdef ESPIPE
325 TRANS Invalid seek operation (such as on a pipe). */
326 [ERR_REMAP (ESPIPE)] = N_("Illegal seek"),
327 # if ESPIPE > ERR_MAX
328 # undef ERR_MAX
329 # define ERR_MAX ESPIPE
330 # endif
331 #endif
332 #ifdef EROFS
334 TRANS An attempt was made to modify something on a read-only file system. */
335 [ERR_REMAP (EROFS)] = N_("Read-only file system"),
336 # if EROFS > ERR_MAX
337 # undef ERR_MAX
338 # define ERR_MAX EROFS
339 # endif
340 #endif
341 #ifdef EMLINK
343 TRANS Too many links; the link count of a single file would become too large.
344 TRANS @code{rename} can cause this error if the file being renamed already has
345 TRANS as many links as it can take (@pxref{Renaming Files}). */
346 [ERR_REMAP (EMLINK)] = N_("Too many links"),
347 # if EMLINK > ERR_MAX
348 # undef ERR_MAX
349 # define ERR_MAX EMLINK
350 # endif
351 #endif
352 #ifdef EPIPE
354 TRANS Broken pipe; there is no process reading from the other end of a pipe.
355 TRANS Every library function that returns this error code also generates a
356 TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled
357 TRANS or blocked. Thus, your program will never actually see @code{EPIPE}
358 TRANS unless it has handled or blocked @code{SIGPIPE}. */
359 [ERR_REMAP (EPIPE)] = N_("Broken pipe"),
360 # if EPIPE > ERR_MAX
361 # undef ERR_MAX
362 # define ERR_MAX EPIPE
363 # endif
364 #endif
365 #ifdef EDOM
367 TRANS Domain error; used by mathematical functions when an argument value does
368 TRANS not fall into the domain over which the function is defined. */
369 [ERR_REMAP (EDOM)] = N_("Numerical argument out of domain"),
370 # if EDOM > ERR_MAX
371 # undef ERR_MAX
372 # define ERR_MAX EDOM
373 # endif
374 #endif
375 #ifdef ERANGE
377 TRANS Range error; used by mathematical functions when the result value is
378 TRANS not representable because of overflow or underflow. */
379 [ERR_REMAP (ERANGE)] = N_("Numerical result out of range"),
380 # if ERANGE > ERR_MAX
381 # undef ERR_MAX
382 # define ERR_MAX ERANGE
383 # endif
384 #endif
385 #ifdef EAGAIN
387 TRANS Resource temporarily unavailable; the call might work if you try again
388 TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN};
389 TRANS they are always the same in @theglibc{}.
390 TRANS
391 TRANS This error can happen in a few different situations:
392 TRANS
393 TRANS @itemize @bullet
394 TRANS @item
395 TRANS An operation that would block was attempted on an object that has
396 TRANS non-blocking mode selected. Trying the same operation again will block
397 TRANS until some external condition makes it possible to read, write, or
398 TRANS connect (whatever the operation). You can use @code{select} to find out
399 TRANS when the operation will be possible; @pxref{Waiting for I/O}.
400 TRANS
401 TRANS @strong{Portability Note:} In many older Unix systems, this condition
402 TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code
403 TRANS different from @code{EAGAIN}. To make your program portable, you should
404 TRANS check for both codes and treat them the same.
405 TRANS
406 TRANS @item
407 TRANS A temporary resource shortage made an operation impossible. @code{fork}
408 TRANS can return this error. It indicates that the shortage is expected to
409 TRANS pass, so your program can try the call again later and it may succeed.
410 TRANS It is probably a good idea to delay for a few seconds before trying it
411 TRANS again, to allow time for other processes to release scarce resources.
412 TRANS Such shortages are usually fairly serious and affect the whole system,
413 TRANS so usually an interactive program should report the error to the user
414 TRANS and return to its command loop.
415 TRANS @end itemize */
416 [ERR_REMAP (EAGAIN)] = N_("Resource temporarily unavailable"),
417 # if EAGAIN > ERR_MAX
418 # undef ERR_MAX
419 # define ERR_MAX EAGAIN
420 # endif
421 #endif
422 #if defined (EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
424 TRANS In @theglibc{}, this is another name for @code{EAGAIN} (above).
425 TRANS The values are always the same, on every operating system.
426 TRANS
427 TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a
428 TRANS separate error code. */
429 [ERR_REMAP (EWOULDBLOCK)] = N_("Operation would block"),
430 # if EWOULDBLOCK > ERR_MAX
431 # undef ERR_MAX
432 # define ERR_MAX EWOULDBLOCK
433 # endif
434 #endif
435 #ifdef EINPROGRESS
437 TRANS An operation that cannot complete immediately was initiated on an object
438 TRANS that has non-blocking mode selected. Some functions that must always
439 TRANS block (such as @code{connect}; @pxref{Connecting}) never return
440 TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that
441 TRANS the operation has begun and will take some time. Attempts to manipulate
442 TRANS the object before the call completes return @code{EALREADY}. You can
443 TRANS use the @code{select} function to find out when the pending operation
444 TRANS has completed; @pxref{Waiting for I/O}. */
445 [ERR_REMAP (EINPROGRESS)] = N_("Operation now in progress"),
446 # if EINPROGRESS > ERR_MAX
447 # undef ERR_MAX
448 # define ERR_MAX EINPROGRESS
449 # endif
450 #endif
451 #ifdef EALREADY
453 TRANS An operation is already in progress on an object that has non-blocking
454 TRANS mode selected. */
455 [ERR_REMAP (EALREADY)] = N_("Operation already in progress"),
456 # if EALREADY > ERR_MAX
457 # undef ERR_MAX
458 # define ERR_MAX EALREADY
459 # endif
460 #endif
461 #ifdef ENOTSOCK
463 TRANS A file that isn't a socket was specified when a socket is required. */
464 [ERR_REMAP (ENOTSOCK)] = N_("Socket operation on non-socket"),
465 # if ENOTSOCK > ERR_MAX
466 # undef ERR_MAX
467 # define ERR_MAX ENOTSOCK
468 # endif
469 #endif
470 #ifdef EMSGSIZE
472 TRANS The size of a message sent on a socket was larger than the supported
473 TRANS maximum size. */
474 [ERR_REMAP (EMSGSIZE)] = N_("Message too long"),
475 # if EMSGSIZE > ERR_MAX
476 # undef ERR_MAX
477 # define ERR_MAX EMSGSIZE
478 # endif
479 #endif
480 #ifdef EPROTOTYPE
482 TRANS The socket type does not support the requested communications protocol. */
483 [ERR_REMAP (EPROTOTYPE)] = N_("Protocol wrong type for socket"),
484 # if EPROTOTYPE > ERR_MAX
485 # undef ERR_MAX
486 # define ERR_MAX EPROTOTYPE
487 # endif
488 #endif
489 #ifdef ENOPROTOOPT
491 TRANS You specified a socket option that doesn't make sense for the
492 TRANS particular protocol being used by the socket. @xref{Socket Options}. */
493 [ERR_REMAP (ENOPROTOOPT)] = N_("Protocol not available"),
494 # if ENOPROTOOPT > ERR_MAX
495 # undef ERR_MAX
496 # define ERR_MAX ENOPROTOOPT
497 # endif
498 #endif
499 #ifdef EPROTONOSUPPORT
501 TRANS The socket domain does not support the requested communications protocol
502 TRANS (perhaps because the requested protocol is completely invalid).
503 TRANS @xref{Creating a Socket}. */
504 [ERR_REMAP (EPROTONOSUPPORT)] = N_("Protocol not supported"),
505 # if EPROTONOSUPPORT > ERR_MAX
506 # undef ERR_MAX
507 # define ERR_MAX EPROTONOSUPPORT
508 # endif
509 #endif
510 #ifdef ESOCKTNOSUPPORT
512 TRANS The socket type is not supported. */
513 [ERR_REMAP (ESOCKTNOSUPPORT)] = N_("Socket type not supported"),
514 # if ESOCKTNOSUPPORT > ERR_MAX
515 # undef ERR_MAX
516 # define ERR_MAX ESOCKTNOSUPPORT
517 # endif
518 #endif
519 #ifdef EOPNOTSUPP
521 TRANS The operation you requested is not supported. Some socket functions
522 TRANS don't make sense for all types of sockets, and others may not be
523 TRANS implemented for all communications protocols. On @gnuhurdsystems{}, this
524 TRANS error can happen for many calls when the object does not support the
525 TRANS particular operation; it is a generic indication that the server knows
526 TRANS nothing to do for that call. */
527 [ERR_REMAP (EOPNOTSUPP)] = N_("Operation not supported"),
528 # if EOPNOTSUPP > ERR_MAX
529 # undef ERR_MAX
530 # define ERR_MAX EOPNOTSUPP
531 # endif
532 #endif
533 #ifdef EPFNOSUPPORT
535 TRANS The socket communications protocol family you requested is not supported. */
536 [ERR_REMAP (EPFNOSUPPORT)] = N_("Protocol family not supported"),
537 # if EPFNOSUPPORT > ERR_MAX
538 # undef ERR_MAX
539 # define ERR_MAX EPFNOSUPPORT
540 # endif
541 #endif
542 #ifdef EAFNOSUPPORT
544 TRANS The address family specified for a socket is not supported; it is
545 TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. */
546 [ERR_REMAP (EAFNOSUPPORT)] = N_("Address family not supported by protocol"),
547 # if EAFNOSUPPORT > ERR_MAX
548 # undef ERR_MAX
549 # define ERR_MAX EAFNOSUPPORT
550 # endif
551 #endif
552 #ifdef EADDRINUSE
554 TRANS The requested socket address is already in use. @xref{Socket Addresses}. */
555 [ERR_REMAP (EADDRINUSE)] = N_("Address already in use"),
556 # if EADDRINUSE > ERR_MAX
557 # undef ERR_MAX
558 # define ERR_MAX EADDRINUSE
559 # endif
560 #endif
561 #ifdef EADDRNOTAVAIL
563 TRANS The requested socket address is not available; for example, you tried
564 TRANS to give a socket a name that doesn't match the local host name.
565 TRANS @xref{Socket Addresses}. */
566 [ERR_REMAP (EADDRNOTAVAIL)] = N_("Cannot assign requested address"),
567 # if EADDRNOTAVAIL > ERR_MAX
568 # undef ERR_MAX
569 # define ERR_MAX EADDRNOTAVAIL
570 # endif
571 #endif
572 #ifdef ENETDOWN
574 TRANS A socket operation failed because the network was down. */
575 [ERR_REMAP (ENETDOWN)] = N_("Network is down"),
576 # if ENETDOWN > ERR_MAX
577 # undef ERR_MAX
578 # define ERR_MAX ENETDOWN
579 # endif
580 #endif
581 #ifdef ENETUNREACH
583 TRANS A socket operation failed because the subnet containing the remote host
584 TRANS was unreachable. */
585 [ERR_REMAP (ENETUNREACH)] = N_("Network is unreachable"),
586 # if ENETUNREACH > ERR_MAX
587 # undef ERR_MAX
588 # define ERR_MAX ENETUNREACH
589 # endif
590 #endif
591 #ifdef ENETRESET
593 TRANS A network connection was reset because the remote host crashed. */
594 [ERR_REMAP (ENETRESET)] = N_("Network dropped connection on reset"),
595 # if ENETRESET > ERR_MAX
596 # undef ERR_MAX
597 # define ERR_MAX ENETRESET
598 # endif
599 #endif
600 #ifdef ECONNABORTED
602 TRANS A network connection was aborted locally. */
603 [ERR_REMAP (ECONNABORTED)] = N_("Software caused connection abort"),
604 # if ECONNABORTED > ERR_MAX
605 # undef ERR_MAX
606 # define ERR_MAX ECONNABORTED
607 # endif
608 #endif
609 #ifdef ECONNRESET
611 TRANS A network connection was closed for reasons outside the control of the
612 TRANS local host, such as by the remote machine rebooting or an unrecoverable
613 TRANS protocol violation. */
614 [ERR_REMAP (ECONNRESET)] = N_("Connection reset by peer"),
615 # if ECONNRESET > ERR_MAX
616 # undef ERR_MAX
617 # define ERR_MAX ECONNRESET
618 # endif
619 #endif
620 #ifdef ENOBUFS
622 TRANS The kernel's buffers for I/O operations are all in use. In GNU, this
623 TRANS error is always synonymous with @code{ENOMEM}; you may get one or the
624 TRANS other from network operations. */
625 [ERR_REMAP (ENOBUFS)] = N_("No buffer space available"),
626 # if ENOBUFS > ERR_MAX
627 # undef ERR_MAX
628 # define ERR_MAX ENOBUFS
629 # endif
630 #endif
631 #ifdef EISCONN
633 TRANS You tried to connect a socket that is already connected.
634 TRANS @xref{Connecting}. */
635 [ERR_REMAP (EISCONN)] = N_("Transport endpoint is already connected"),
636 # if EISCONN > ERR_MAX
637 # undef ERR_MAX
638 # define ERR_MAX EISCONN
639 # endif
640 #endif
641 #ifdef ENOTCONN
643 TRANS The socket is not connected to anything. You get this error when you
644 TRANS try to transmit data over a socket, without first specifying a
645 TRANS destination for the data. For a connectionless socket (for datagram
646 TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. */
647 [ERR_REMAP (ENOTCONN)] = N_("Transport endpoint is not connected"),
648 # if ENOTCONN > ERR_MAX
649 # undef ERR_MAX
650 # define ERR_MAX ENOTCONN
651 # endif
652 #endif
653 #ifdef EDESTADDRREQ
655 TRANS No default destination address was set for the socket. You get this
656 TRANS error when you try to transmit data over a connectionless socket,
657 TRANS without first specifying a destination for the data with @code{connect}. */
658 [ERR_REMAP (EDESTADDRREQ)] = N_("Destination address required"),
659 # if EDESTADDRREQ > ERR_MAX
660 # undef ERR_MAX
661 # define ERR_MAX EDESTADDRREQ
662 # endif
663 #endif
664 #ifdef ESHUTDOWN
666 TRANS The socket has already been shut down. */
667 [ERR_REMAP (ESHUTDOWN)] = N_("Cannot send after transport endpoint shutdown"),
668 # if ESHUTDOWN > ERR_MAX
669 # undef ERR_MAX
670 # define ERR_MAX ESHUTDOWN
671 # endif
672 #endif
673 #ifdef ETOOMANYREFS
675 TRANS ??? */
676 [ERR_REMAP (ETOOMANYREFS)] = N_("Too many references: cannot splice"),
677 # if ETOOMANYREFS > ERR_MAX
678 # undef ERR_MAX
679 # define ERR_MAX ETOOMANYREFS
680 # endif
681 #endif
682 #ifdef ETIMEDOUT
684 TRANS A socket operation with a specified timeout received no response during
685 TRANS the timeout period. */
686 [ERR_REMAP (ETIMEDOUT)] = N_("Connection timed out"),
687 # if ETIMEDOUT > ERR_MAX
688 # undef ERR_MAX
689 # define ERR_MAX ETIMEDOUT
690 # endif
691 #endif
692 #ifdef ECONNREFUSED
694 TRANS A remote host refused to allow the network connection (typically because
695 TRANS it is not running the requested service). */
696 [ERR_REMAP (ECONNREFUSED)] = N_("Connection refused"),
697 # if ECONNREFUSED > ERR_MAX
698 # undef ERR_MAX
699 # define ERR_MAX ECONNREFUSED
700 # endif
701 #endif
702 #ifdef ELOOP
704 TRANS Too many levels of symbolic links were encountered in looking up a file name.
705 TRANS This often indicates a cycle of symbolic links. */
706 [ERR_REMAP (ELOOP)] = N_("Too many levels of symbolic links"),
707 # if ELOOP > ERR_MAX
708 # undef ERR_MAX
709 # define ERR_MAX ELOOP
710 # endif
711 #endif
712 #ifdef ENAMETOOLONG
714 TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for
715 TRANS Files}) or host name too long (in @code{gethostname} or
716 TRANS @code{sethostname}; @pxref{Host Identification}). */
717 [ERR_REMAP (ENAMETOOLONG)] = N_("File name too long"),
718 # if ENAMETOOLONG > ERR_MAX
719 # undef ERR_MAX
720 # define ERR_MAX ENAMETOOLONG
721 # endif
722 #endif
723 #ifdef EHOSTDOWN
725 TRANS The remote host for a requested network connection is down. */
726 [ERR_REMAP (EHOSTDOWN)] = N_("Host is down"),
727 # if EHOSTDOWN > ERR_MAX
728 # undef ERR_MAX
729 # define ERR_MAX EHOSTDOWN
730 # endif
731 #endif
732 #ifdef EHOSTUNREACH
734 TRANS The remote host for a requested network connection is not reachable. */
735 [ERR_REMAP (EHOSTUNREACH)] = N_("No route to host"),
736 # if EHOSTUNREACH > ERR_MAX
737 # undef ERR_MAX
738 # define ERR_MAX EHOSTUNREACH
739 # endif
740 #endif
741 #ifdef ENOTEMPTY
743 TRANS Directory not empty, where an empty directory was expected. Typically,
744 TRANS this error occurs when you are trying to delete a directory. */
745 [ERR_REMAP (ENOTEMPTY)] = N_("Directory not empty"),
746 # if ENOTEMPTY > ERR_MAX
747 # undef ERR_MAX
748 # define ERR_MAX ENOTEMPTY
749 # endif
750 #endif
751 #ifdef EPROCLIM
753 TRANS This means that the per-user limit on new process would be exceeded by
754 TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on
755 TRANS the @code{RLIMIT_NPROC} limit. */
756 [ERR_REMAP (EPROCLIM)] = N_("Too many processes"),
757 # if EPROCLIM > ERR_MAX
758 # undef ERR_MAX
759 # define ERR_MAX EPROCLIM
760 # endif
761 #endif
762 #ifdef EUSERS
764 TRANS The file quota system is confused because there are too many users.
765 TRANS @c This can probably happen in a GNU system when using NFS. */
766 [ERR_REMAP (EUSERS)] = N_("Too many users"),
767 # if EUSERS > ERR_MAX
768 # undef ERR_MAX
769 # define ERR_MAX EUSERS
770 # endif
771 #endif
772 #ifdef EDQUOT
774 TRANS The user's disk quota was exceeded. */
775 [ERR_REMAP (EDQUOT)] = N_("Disk quota exceeded"),
776 # if EDQUOT > ERR_MAX
777 # undef ERR_MAX
778 # define ERR_MAX EDQUOT
779 # endif
780 #endif
781 #ifdef ESTALE
783 TRANS Stale file handle. This indicates an internal confusion in the
784 TRANS file system which is due to file system rearrangements on the server host
785 TRANS for NFS file systems or corruption in other file systems.
786 TRANS Repairing this condition usually requires unmounting, possibly repairing
787 TRANS and remounting the file system. */
788 [ERR_REMAP (ESTALE)] = N_("Stale file handle"),
789 # if ESTALE > ERR_MAX
790 # undef ERR_MAX
791 # define ERR_MAX ESTALE
792 # endif
793 #endif
794 #ifdef EREMOTE
796 TRANS An attempt was made to NFS-mount a remote file system with a file name that
797 TRANS already specifies an NFS-mounted file.
798 TRANS (This is an error on some operating systems, but we expect it to work
799 TRANS properly on @gnuhurdsystems{}, making this error code impossible.) */
800 [ERR_REMAP (EREMOTE)] = N_("Object is remote"),
801 # if EREMOTE > ERR_MAX
802 # undef ERR_MAX
803 # define ERR_MAX EREMOTE
804 # endif
805 #endif
806 #ifdef EBADRPC
808 TRANS ??? */
809 [ERR_REMAP (EBADRPC)] = N_("RPC struct is bad"),
810 # if EBADRPC > ERR_MAX
811 # undef ERR_MAX
812 # define ERR_MAX EBADRPC
813 # endif
814 #endif
815 #ifdef ERPCMISMATCH
817 TRANS ??? */
818 [ERR_REMAP (ERPCMISMATCH)] = N_("RPC version wrong"),
819 # if ERPCMISMATCH > ERR_MAX
820 # undef ERR_MAX
821 # define ERR_MAX ERPCMISMATCH
822 # endif
823 #endif
824 #ifdef EPROGUNAVAIL
826 TRANS ??? */
827 [ERR_REMAP (EPROGUNAVAIL)] = N_("RPC program not available"),
828 # if EPROGUNAVAIL > ERR_MAX
829 # undef ERR_MAX
830 # define ERR_MAX EPROGUNAVAIL
831 # endif
832 #endif
833 #ifdef EPROGMISMATCH
835 TRANS ??? */
836 [ERR_REMAP (EPROGMISMATCH)] = N_("RPC program version wrong"),
837 # if EPROGMISMATCH > ERR_MAX
838 # undef ERR_MAX
839 # define ERR_MAX EPROGMISMATCH
840 # endif
841 #endif
842 #ifdef EPROCUNAVAIL
844 TRANS ??? */
845 [ERR_REMAP (EPROCUNAVAIL)] = N_("RPC bad procedure for program"),
846 # if EPROCUNAVAIL > ERR_MAX
847 # undef ERR_MAX
848 # define ERR_MAX EPROCUNAVAIL
849 # endif
850 #endif
851 #ifdef ENOLCK
853 TRANS No locks available. This is used by the file locking facilities; see
854 TRANS @ref{File Locks}. This error is never generated by @gnuhurdsystems{}, but
855 TRANS it can result from an operation to an NFS server running another
856 TRANS operating system. */
857 [ERR_REMAP (ENOLCK)] = N_("No locks available"),
858 # if ENOLCK > ERR_MAX
859 # undef ERR_MAX
860 # define ERR_MAX ENOLCK
861 # endif
862 #endif
863 #ifdef EFTYPE
865 TRANS Inappropriate file type or format. The file was the wrong type for the
866 TRANS operation, or a data file had the wrong format.
867 TRANS
868 TRANS On some systems @code{chmod} returns this error if you try to set the
869 TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. */
870 [ERR_REMAP (EFTYPE)] = N_("Inappropriate file type or format"),
871 # if EFTYPE > ERR_MAX
872 # undef ERR_MAX
873 # define ERR_MAX EFTYPE
874 # endif
875 #endif
876 #ifdef EAUTH
878 TRANS ??? */
879 [ERR_REMAP (EAUTH)] = N_("Authentication error"),
880 # if EAUTH > ERR_MAX
881 # undef ERR_MAX
882 # define ERR_MAX EAUTH
883 # endif
884 #endif
885 #ifdef ENEEDAUTH
887 TRANS ??? */
888 [ERR_REMAP (ENEEDAUTH)] = N_("Need authenticator"),
889 # if ENEEDAUTH > ERR_MAX
890 # undef ERR_MAX
891 # define ERR_MAX ENEEDAUTH
892 # endif
893 #endif
894 #ifdef ENOSYS
896 TRANS Function not implemented. This indicates that the function called is
897 TRANS not implemented at all, either in the C library itself or in the
898 TRANS operating system. When you get this error, you can be sure that this
899 TRANS particular function will always fail with @code{ENOSYS} unless you
900 TRANS install a new version of the C library or the operating system. */
901 [ERR_REMAP (ENOSYS)] = N_("Function not implemented"),
902 # if ENOSYS > ERR_MAX
903 # undef ERR_MAX
904 # define ERR_MAX ENOSYS
905 # endif
906 #endif
907 #if defined (ENOTSUP) && ENOTSUP != EOPNOTSUPP
909 TRANS Not supported. A function returns this error when certain parameter
910 TRANS values are valid, but the functionality they request is not available.
911 TRANS This can mean that the function does not implement a particular command
912 TRANS or option value or flag bit at all. For functions that operate on some
913 TRANS object given in a parameter, such as a file descriptor or a port, it
914 TRANS might instead mean that only @emph{that specific object} (file
915 TRANS descriptor, port, etc.) is unable to support the other parameters given;
916 TRANS different file descriptors might support different ranges of parameter
917 TRANS values.
918 TRANS
919 TRANS If the entire function is not available at all in the implementation,
920 TRANS it returns @code{ENOSYS} instead. */
921 [ERR_REMAP (ENOTSUP)] = N_("Not supported"),
922 # if ENOTSUP > ERR_MAX
923 # undef ERR_MAX
924 # define ERR_MAX ENOTSUP
925 # endif
926 #endif
927 #ifdef EILSEQ
929 TRANS While decoding a multibyte character the function came along an invalid
930 TRANS or an incomplete sequence of bytes or the given wide character is invalid. */
931 [ERR_REMAP (EILSEQ)] = N_("Invalid or incomplete multibyte or wide character"),
932 # if EILSEQ > ERR_MAX
933 # undef ERR_MAX
934 # define ERR_MAX EILSEQ
935 # endif
936 #endif
937 #ifdef EBACKGROUND
939 TRANS On @gnuhurdsystems{}, servers supporting the @code{term} protocol return
940 TRANS this error for certain operations when the caller is not in the
941 TRANS foreground process group of the terminal. Users do not usually see this
942 TRANS error because functions such as @code{read} and @code{write} translate
943 TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control},
944 TRANS for information on process groups and these signals. */
945 [ERR_REMAP (EBACKGROUND)] = N_("Inappropriate operation for background process"),
946 # if EBACKGROUND > ERR_MAX
947 # undef ERR_MAX
948 # define ERR_MAX EBACKGROUND
949 # endif
950 #endif
951 #ifdef EDIED
953 TRANS On @gnuhurdsystems{}, opening a file returns this error when the file is
954 TRANS translated by a program and the translator program dies while starting
955 TRANS up, before it has connected to the file. */
956 [ERR_REMAP (EDIED)] = N_("Translator died"),
957 # if EDIED > ERR_MAX
958 # undef ERR_MAX
959 # define ERR_MAX EDIED
960 # endif
961 #endif
962 #ifdef ED
964 TRANS The experienced user will know what is wrong.
965 TRANS @c This error code is a joke. Its perror text is part of the joke.
966 TRANS @c Don't change it. */
967 [ERR_REMAP (ED)] = N_("?"),
968 # if ED > ERR_MAX
969 # undef ERR_MAX
970 # define ERR_MAX ED
971 # endif
972 #endif
973 #ifdef EGREGIOUS
975 TRANS You did @strong{what}? */
976 [ERR_REMAP (EGREGIOUS)] = N_("You really blew it this time"),
977 # if EGREGIOUS > ERR_MAX
978 # undef ERR_MAX
979 # define ERR_MAX EGREGIOUS
980 # endif
981 #endif
982 #ifdef EIEIO
984 TRANS Go home and have a glass of warm, dairy-fresh milk. */
985 [ERR_REMAP (EIEIO)] = N_("Computer bought the farm"),
986 # if EIEIO > ERR_MAX
987 # undef ERR_MAX
988 # define ERR_MAX EIEIO
989 # endif
990 #endif
991 #ifdef EGRATUITOUS
993 TRANS This error code has no purpose. */
994 [ERR_REMAP (EGRATUITOUS)] = N_("Gratuitous error"),
995 # if EGRATUITOUS > ERR_MAX
996 # undef ERR_MAX
997 # define ERR_MAX EGRATUITOUS
998 # endif
999 #endif
1000 #ifdef EBADMSG
1001 /* */
1002 [ERR_REMAP (EBADMSG)] = N_("Bad message"),
1003 # if EBADMSG > ERR_MAX
1004 # undef ERR_MAX
1005 # define ERR_MAX EBADMSG
1006 # endif
1007 #endif
1008 #ifdef EIDRM
1009 /* */
1010 [ERR_REMAP (EIDRM)] = N_("Identifier removed"),
1011 # if EIDRM > ERR_MAX
1012 # undef ERR_MAX
1013 # define ERR_MAX EIDRM
1014 # endif
1015 #endif
1016 #ifdef EMULTIHOP
1017 /* */
1018 [ERR_REMAP (EMULTIHOP)] = N_("Multihop attempted"),
1019 # if EMULTIHOP > ERR_MAX
1020 # undef ERR_MAX
1021 # define ERR_MAX EMULTIHOP
1022 # endif
1023 #endif
1024 #ifdef ENODATA
1025 /* */
1026 [ERR_REMAP (ENODATA)] = N_("No data available"),
1027 # if ENODATA > ERR_MAX
1028 # undef ERR_MAX
1029 # define ERR_MAX ENODATA
1030 # endif
1031 #endif
1032 #ifdef ENOLINK
1033 /* */
1034 [ERR_REMAP (ENOLINK)] = N_("Link has been severed"),
1035 # if ENOLINK > ERR_MAX
1036 # undef ERR_MAX
1037 # define ERR_MAX ENOLINK
1038 # endif
1039 #endif
1040 #ifdef ENOMSG
1041 /* */
1042 [ERR_REMAP (ENOMSG)] = N_("No message of desired type"),
1043 # if ENOMSG > ERR_MAX
1044 # undef ERR_MAX
1045 # define ERR_MAX ENOMSG
1046 # endif
1047 #endif
1048 #ifdef ENOSR
1049 /* */
1050 [ERR_REMAP (ENOSR)] = N_("Out of streams resources"),
1051 # if ENOSR > ERR_MAX
1052 # undef ERR_MAX
1053 # define ERR_MAX ENOSR
1054 # endif
1055 #endif
1056 #ifdef ENOSTR
1057 /* */
1058 [ERR_REMAP (ENOSTR)] = N_("Device not a stream"),
1059 # if ENOSTR > ERR_MAX
1060 # undef ERR_MAX
1061 # define ERR_MAX ENOSTR
1062 # endif
1063 #endif
1064 #ifdef EOVERFLOW
1065 /* */
1066 [ERR_REMAP (EOVERFLOW)] = N_("Value too large for defined data type"),
1067 # if EOVERFLOW > ERR_MAX
1068 # undef ERR_MAX
1069 # define ERR_MAX EOVERFLOW
1070 # endif
1071 #endif
1072 #ifdef EPROTO
1073 /* */
1074 [ERR_REMAP (EPROTO)] = N_("Protocol error"),
1075 # if EPROTO > ERR_MAX
1076 # undef ERR_MAX
1077 # define ERR_MAX EPROTO
1078 # endif
1079 #endif
1080 #ifdef ETIME
1081 /* */
1082 [ERR_REMAP (ETIME)] = N_("Timer expired"),
1083 # if ETIME > ERR_MAX
1084 # undef ERR_MAX
1085 # define ERR_MAX ETIME
1086 # endif
1087 #endif
1088 #ifdef ECANCELED
1090 TRANS Operation canceled; an asynchronous operation was canceled before it
1091 TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel},
1092 TRANS the normal result is for the operations affected to complete with this
1093 TRANS error; @pxref{Cancel AIO Operations}. */
1094 [ERR_REMAP (ECANCELED)] = N_("Operation canceled"),
1095 # if ECANCELED > ERR_MAX
1096 # undef ERR_MAX
1097 # define ERR_MAX ECANCELED
1098 # endif
1099 #endif
1100 #ifdef ERESTART
1101 /* */
1102 [ERR_REMAP (ERESTART)] = N_("Interrupted system call should be restarted"),
1103 # if ERESTART > ERR_MAX
1104 # undef ERR_MAX
1105 # define ERR_MAX ERESTART
1106 # endif
1107 #endif
1108 #ifdef ECHRNG
1109 /* */
1110 [ERR_REMAP (ECHRNG)] = N_("Channel number out of range"),
1111 # if ECHRNG > ERR_MAX
1112 # undef ERR_MAX
1113 # define ERR_MAX ECHRNG
1114 # endif
1115 #endif
1116 #ifdef EL2NSYNC
1117 /* */
1118 [ERR_REMAP (EL2NSYNC)] = N_("Level 2 not synchronized"),
1119 # if EL2NSYNC > ERR_MAX
1120 # undef ERR_MAX
1121 # define ERR_MAX EL2NSYNC
1122 # endif
1123 #endif
1124 #ifdef EL3HLT
1125 /* */
1126 [ERR_REMAP (EL3HLT)] = N_("Level 3 halted"),
1127 # if EL3HLT > ERR_MAX
1128 # undef ERR_MAX
1129 # define ERR_MAX EL3HLT
1130 # endif
1131 #endif
1132 #ifdef EL3RST
1133 /* */
1134 [ERR_REMAP (EL3RST)] = N_("Level 3 reset"),
1135 # if EL3RST > ERR_MAX
1136 # undef ERR_MAX
1137 # define ERR_MAX EL3RST
1138 # endif
1139 #endif
1140 #ifdef ELNRNG
1141 /* */
1142 [ERR_REMAP (ELNRNG)] = N_("Link number out of range"),
1143 # if ELNRNG > ERR_MAX
1144 # undef ERR_MAX
1145 # define ERR_MAX ELNRNG
1146 # endif
1147 #endif
1148 #ifdef EUNATCH
1149 /* */
1150 [ERR_REMAP (EUNATCH)] = N_("Protocol driver not attached"),
1151 # if EUNATCH > ERR_MAX
1152 # undef ERR_MAX
1153 # define ERR_MAX EUNATCH
1154 # endif
1155 #endif
1156 #ifdef ENOCSI
1157 /* */
1158 [ERR_REMAP (ENOCSI)] = N_("No CSI structure available"),
1159 # if ENOCSI > ERR_MAX
1160 # undef ERR_MAX
1161 # define ERR_MAX ENOCSI
1162 # endif
1163 #endif
1164 #ifdef EL2HLT
1165 /* */
1166 [ERR_REMAP (EL2HLT)] = N_("Level 2 halted"),
1167 # if EL2HLT > ERR_MAX
1168 # undef ERR_MAX
1169 # define ERR_MAX EL2HLT
1170 # endif
1171 #endif
1172 #ifdef EBADE
1173 /* */
1174 [ERR_REMAP (EBADE)] = N_("Invalid exchange"),
1175 # if EBADE > ERR_MAX
1176 # undef ERR_MAX
1177 # define ERR_MAX EBADE
1178 # endif
1179 #endif
1180 #ifdef EBADR
1181 /* */
1182 [ERR_REMAP (EBADR)] = N_("Invalid request descriptor"),
1183 # if EBADR > ERR_MAX
1184 # undef ERR_MAX
1185 # define ERR_MAX EBADR
1186 # endif
1187 #endif
1188 #ifdef EXFULL
1189 /* */
1190 [ERR_REMAP (EXFULL)] = N_("Exchange full"),
1191 # if EXFULL > ERR_MAX
1192 # undef ERR_MAX
1193 # define ERR_MAX EXFULL
1194 # endif
1195 #endif
1196 #ifdef ENOANO
1197 /* */
1198 [ERR_REMAP (ENOANO)] = N_("No anode"),
1199 # if ENOANO > ERR_MAX
1200 # undef ERR_MAX
1201 # define ERR_MAX ENOANO
1202 # endif
1203 #endif
1204 #ifdef EBADRQC
1205 /* */
1206 [ERR_REMAP (EBADRQC)] = N_("Invalid request code"),
1207 # if EBADRQC > ERR_MAX
1208 # undef ERR_MAX
1209 # define ERR_MAX EBADRQC
1210 # endif
1211 #endif
1212 #ifdef EBADSLT
1213 /* */
1214 [ERR_REMAP (EBADSLT)] = N_("Invalid slot"),
1215 # if EBADSLT > ERR_MAX
1216 # undef ERR_MAX
1217 # define ERR_MAX EBADSLT
1218 # endif
1219 #endif
1220 #if defined (EDEADLOCK) && EDEADLOCK != EDEADLK
1221 /* */
1222 [ERR_REMAP (EDEADLOCK)] = N_("File locking deadlock error"),
1223 # if EDEADLOCK > ERR_MAX
1224 # undef ERR_MAX
1225 # define ERR_MAX EDEADLOCK
1226 # endif
1227 #endif
1228 #ifdef EBFONT
1229 /* */
1230 [ERR_REMAP (EBFONT)] = N_("Bad font file format"),
1231 # if EBFONT > ERR_MAX
1232 # undef ERR_MAX
1233 # define ERR_MAX EBFONT
1234 # endif
1235 #endif
1236 #ifdef ENONET
1237 /* */
1238 [ERR_REMAP (ENONET)] = N_("Machine is not on the network"),
1239 # if ENONET > ERR_MAX
1240 # undef ERR_MAX
1241 # define ERR_MAX ENONET
1242 # endif
1243 #endif
1244 #ifdef ENOPKG
1245 /* */
1246 [ERR_REMAP (ENOPKG)] = N_("Package not installed"),
1247 # if ENOPKG > ERR_MAX
1248 # undef ERR_MAX
1249 # define ERR_MAX ENOPKG
1250 # endif
1251 #endif
1252 #ifdef EADV
1253 /* */
1254 [ERR_REMAP (EADV)] = N_("Advertise error"),
1255 # if EADV > ERR_MAX
1256 # undef ERR_MAX
1257 # define ERR_MAX EADV
1258 # endif
1259 #endif
1260 #ifdef ESRMNT
1261 /* */
1262 [ERR_REMAP (ESRMNT)] = N_("Srmount error"),
1263 # if ESRMNT > ERR_MAX
1264 # undef ERR_MAX
1265 # define ERR_MAX ESRMNT
1266 # endif
1267 #endif
1268 #ifdef ECOMM
1269 /* */
1270 [ERR_REMAP (ECOMM)] = N_("Communication error on send"),
1271 # if ECOMM > ERR_MAX
1272 # undef ERR_MAX
1273 # define ERR_MAX ECOMM
1274 # endif
1275 #endif
1276 #ifdef EDOTDOT
1277 /* */
1278 [ERR_REMAP (EDOTDOT)] = N_("RFS specific error"),
1279 # if EDOTDOT > ERR_MAX
1280 # undef ERR_MAX
1281 # define ERR_MAX EDOTDOT
1282 # endif
1283 #endif
1284 #ifdef ENOTUNIQ
1285 /* */
1286 [ERR_REMAP (ENOTUNIQ)] = N_("Name not unique on network"),
1287 # if ENOTUNIQ > ERR_MAX
1288 # undef ERR_MAX
1289 # define ERR_MAX ENOTUNIQ
1290 # endif
1291 #endif
1292 #ifdef EBADFD
1293 /* */
1294 [ERR_REMAP (EBADFD)] = N_("File descriptor in bad state"),
1295 # if EBADFD > ERR_MAX
1296 # undef ERR_MAX
1297 # define ERR_MAX EBADFD
1298 # endif
1299 #endif
1300 #ifdef EREMCHG
1301 /* */
1302 [ERR_REMAP (EREMCHG)] = N_("Remote address changed"),
1303 # if EREMCHG > ERR_MAX
1304 # undef ERR_MAX
1305 # define ERR_MAX EREMCHG
1306 # endif
1307 #endif
1308 #ifdef ELIBACC
1309 /* */
1310 [ERR_REMAP (ELIBACC)] = N_("Can not access a needed shared library"),
1311 # if ELIBACC > ERR_MAX
1312 # undef ERR_MAX
1313 # define ERR_MAX ELIBACC
1314 # endif
1315 #endif
1316 #ifdef ELIBBAD
1317 /* */
1318 [ERR_REMAP (ELIBBAD)] = N_("Accessing a corrupted shared library"),
1319 # if ELIBBAD > ERR_MAX
1320 # undef ERR_MAX
1321 # define ERR_MAX ELIBBAD
1322 # endif
1323 #endif
1324 #ifdef ELIBSCN
1325 /* */
1326 [ERR_REMAP (ELIBSCN)] = N_(".lib section in a.out corrupted"),
1327 # if ELIBSCN > ERR_MAX
1328 # undef ERR_MAX
1329 # define ERR_MAX ELIBSCN
1330 # endif
1331 #endif
1332 #ifdef ELIBMAX
1333 /* */
1334 [ERR_REMAP (ELIBMAX)] = N_("Attempting to link in too many shared libraries"),
1335 # if ELIBMAX > ERR_MAX
1336 # undef ERR_MAX
1337 # define ERR_MAX ELIBMAX
1338 # endif
1339 #endif
1340 #ifdef ELIBEXEC
1341 /* */
1342 [ERR_REMAP (ELIBEXEC)] = N_("Cannot exec a shared library directly"),
1343 # if ELIBEXEC > ERR_MAX
1344 # undef ERR_MAX
1345 # define ERR_MAX ELIBEXEC
1346 # endif
1347 #endif
1348 #ifdef ESTRPIPE
1349 /* */
1350 [ERR_REMAP (ESTRPIPE)] = N_("Streams pipe error"),
1351 # if ESTRPIPE > ERR_MAX
1352 # undef ERR_MAX
1353 # define ERR_MAX ESTRPIPE
1354 # endif
1355 #endif
1356 #ifdef EUCLEAN
1357 /* */
1358 [ERR_REMAP (EUCLEAN)] = N_("Structure needs cleaning"),
1359 # if EUCLEAN > ERR_MAX
1360 # undef ERR_MAX
1361 # define ERR_MAX EUCLEAN
1362 # endif
1363 #endif
1364 #ifdef ENOTNAM
1365 /* */
1366 [ERR_REMAP (ENOTNAM)] = N_("Not a XENIX named type file"),
1367 # if ENOTNAM > ERR_MAX
1368 # undef ERR_MAX
1369 # define ERR_MAX ENOTNAM
1370 # endif
1371 #endif
1372 #ifdef ENAVAIL
1373 /* */
1374 [ERR_REMAP (ENAVAIL)] = N_("No XENIX semaphores available"),
1375 # if ENAVAIL > ERR_MAX
1376 # undef ERR_MAX
1377 # define ERR_MAX ENAVAIL
1378 # endif
1379 #endif
1380 #ifdef EISNAM
1381 /* */
1382 [ERR_REMAP (EISNAM)] = N_("Is a named type file"),
1383 # if EISNAM > ERR_MAX
1384 # undef ERR_MAX
1385 # define ERR_MAX EISNAM
1386 # endif
1387 #endif
1388 #ifdef EREMOTEIO
1389 /* */
1390 [ERR_REMAP (EREMOTEIO)] = N_("Remote I/O error"),
1391 # if EREMOTEIO > ERR_MAX
1392 # undef ERR_MAX
1393 # define ERR_MAX EREMOTEIO
1394 # endif
1395 #endif
1396 #ifdef ENOMEDIUM
1397 /* */
1398 [ERR_REMAP (ENOMEDIUM)] = N_("No medium found"),
1399 # if ENOMEDIUM > ERR_MAX
1400 # undef ERR_MAX
1401 # define ERR_MAX ENOMEDIUM
1402 # endif
1403 #endif
1404 #ifdef EMEDIUMTYPE
1405 /* */
1406 [ERR_REMAP (EMEDIUMTYPE)] = N_("Wrong medium type"),
1407 # if EMEDIUMTYPE > ERR_MAX
1408 # undef ERR_MAX
1409 # define ERR_MAX EMEDIUMTYPE
1410 # endif
1411 #endif
1412 #ifdef ENOKEY
1413 /* */
1414 [ERR_REMAP (ENOKEY)] = N_("Required key not available"),
1415 # if ENOKEY > ERR_MAX
1416 # undef ERR_MAX
1417 # define ERR_MAX ENOKEY
1418 # endif
1419 #endif
1420 #ifdef EKEYEXPIRED
1421 /* */
1422 [ERR_REMAP (EKEYEXPIRED)] = N_("Key has expired"),
1423 # if EKEYEXPIRED > ERR_MAX
1424 # undef ERR_MAX
1425 # define ERR_MAX EKEYEXPIRED
1426 # endif
1427 #endif
1428 #ifdef EKEYREVOKED
1429 /* */
1430 [ERR_REMAP (EKEYREVOKED)] = N_("Key has been revoked"),
1431 # if EKEYREVOKED > ERR_MAX
1432 # undef ERR_MAX
1433 # define ERR_MAX EKEYREVOKED
1434 # endif
1435 #endif
1436 #ifdef EKEYREJECTED
1437 /* */
1438 [ERR_REMAP (EKEYREJECTED)] = N_("Key was rejected by service"),
1439 # if EKEYREJECTED > ERR_MAX
1440 # undef ERR_MAX
1441 # define ERR_MAX EKEYREJECTED
1442 # endif
1443 #endif
1444 #ifdef EOWNERDEAD
1445 /* */
1446 [ERR_REMAP (EOWNERDEAD)] = N_("Owner died"),
1447 # if EOWNERDEAD > ERR_MAX
1448 # undef ERR_MAX
1449 # define ERR_MAX EOWNERDEAD
1450 # endif
1451 #endif
1452 #ifdef ENOTRECOVERABLE
1453 /* */
1454 [ERR_REMAP (ENOTRECOVERABLE)] = N_("State not recoverable"),
1455 # if ENOTRECOVERABLE > ERR_MAX
1456 # undef ERR_MAX
1457 # define ERR_MAX ENOTRECOVERABLE
1458 # endif
1459 #endif
1460 #ifdef ERFKILL
1461 /* */
1462 [ERR_REMAP (ERFKILL)] = N_("Operation not possible due to RF-kill"),
1463 # if ERFKILL > ERR_MAX
1464 # undef ERR_MAX
1465 # define ERR_MAX ERFKILL
1466 # endif
1467 #endif
1468 #ifdef EHWPOISON
1469 /* */
1470 [ERR_REMAP (EHWPOISON)] = N_("Memory page has hardware error"),
1471 # if EHWPOISON > ERR_MAX
1472 # undef ERR_MAX
1473 # define ERR_MAX EHWPOISON
1474 # endif
1475 #endif
1478 #define NERR \
1479 (sizeof _sys_errlist_internal / sizeof _sys_errlist_internal [0])
1480 const int _sys_nerr_internal = NERR;
1482 #if !defined NOT_IN_libc && !ERRLIST_NO_COMPAT
1483 # include <errlist-compat.c>
1484 #endif
1486 #ifdef EMIT_ERR_MAX
1487 void dummy (void)
1488 { asm volatile (" @@@ %0 @@@ " : : "i" (ERR_REMAP (ERR_MAX))); }
1489 #endif