1 /* $NetBSD: compat_errlist.c,v 1.2 2006/10/31 00:38:07 cbiere Exp $ */
4 * Copyright (c) 1982, 1985, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
33 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)errlst.c 8.2 (Berkeley) 11/16/93";
37 __RCSID("$NetBSD: compat_errlist.c,v 1.2 2006/10/31 00:38:07 cbiere Exp $");
39 #endif /* LIBC_SCCS and not lint */
41 #include "namespace.h"
43 #define __LIBC12_SOURCE__
46 __weak_alias(sys_errlist
, _sys_errlist
)
47 __weak_alias(__sys_errlist
, _sys_errlist
)
48 __weak_alias(sys_nerr
, _sys_nerr
)
49 __weak_alias(__sys_nerr
, _sys_nerr
)
52 const char *const sys_errlist
[] = {
53 "Undefined error: 0", /* 0 - ENOERROR */
54 "Operation not permitted", /* 1 - EPERM */
55 "No such file or directory", /* 2 - ENOENT */
56 "No such process", /* 3 - ESRCH */
57 "Interrupted system call", /* 4 - EINTR */
58 "Input/output error", /* 5 - EIO */
59 "Device not configured", /* 6 - ENXIO */
60 "Argument list too long", /* 7 - E2BIG */
61 "Exec format error", /* 8 - ENOEXEC */
62 "Bad file descriptor", /* 9 - EBADF */
63 "No child processes", /* 10 - ECHILD */
64 "Resource deadlock avoided", /* 11 - EDEADLK */
65 "Cannot allocate memory", /* 12 - ENOMEM */
66 "Permission denied", /* 13 - EACCES */
67 "Bad address", /* 14 - EFAULT */
68 "Block device required", /* 15 - ENOTBLK */
69 "Device busy", /* 16 - EBUSY */
70 "File exists", /* 17 - EEXIST */
71 "Cross-device link", /* 18 - EXDEV */
72 "Operation not supported by device", /* 19 - ENODEV */
73 "Not a directory", /* 20 - ENOTDIR */
74 "Is a directory", /* 21 - EISDIR */
75 "Invalid argument", /* 22 - EINVAL */
76 "Too many open files in system", /* 23 - ENFILE */
77 "Too many open files", /* 24 - EMFILE */
78 "Inappropriate ioctl for device", /* 25 - ENOTTY */
79 "Text file busy", /* 26 - ETXTBSY */
80 "File too large", /* 27 - EFBIG */
81 "No space left on device", /* 28 - ENOSPC */
82 "Illegal seek", /* 29 - ESPIPE */
83 "Read-only file system", /* 30 - EROFS */
84 "Too many links", /* 31 - EMLINK */
85 "Broken pipe", /* 32 - EPIPE */
88 "Numerical argument out of domain", /* 33 - EDOM */
89 "Result too large or too small", /* 34 - ERANGE */
91 /* non-blocking and interrupt i/o */
92 "Resource temporarily unavailable", /* 35 - EAGAIN */
93 /* 35 - EWOULDBLOCK */
94 "Operation now in progress", /* 36 - EINPROGRESS */
95 "Operation already in progress", /* 37 - EALREADY */
97 /* ipc/network software -- argument errors */
98 "Socket operation on non-socket", /* 38 - ENOTSOCK */
99 "Destination address required", /* 39 - EDESTADDRREQ */
100 "Message too long", /* 40 - EMSGSIZE */
101 "Protocol wrong type for socket", /* 41 - EPROTOTYPE */
102 "Protocol option not available", /* 42 - ENOPROTOOPT */
103 "Protocol not supported", /* 43 - EPROTONOSUPPORT */
104 "Socket type not supported", /* 44 - ESOCKTNOSUPPORT */
105 "Operation not supported", /* 45 - EOPNOTSUPP */
106 "Protocol family not supported", /* 46 - EPFNOSUPPORT */
107 /* 47 - EAFNOSUPPORT */
108 "Address family not supported by protocol family",
109 "Address already in use", /* 48 - EADDRINUSE */
110 "Can't assign requested address", /* 49 - EADDRNOTAVAIL */
112 /* ipc/network software -- operational errors */
113 "Network is down", /* 50 - ENETDOWN */
114 "Network is unreachable", /* 51 - ENETUNREACH */
115 "Network dropped connection on reset", /* 52 - ENETRESET */
116 "Software caused connection abort", /* 53 - ECONNABORTED */
117 "Connection reset by peer", /* 54 - ECONNRESET */
118 "No buffer space available", /* 55 - ENOBUFS */
119 "Socket is already connected", /* 56 - EISCONN */
120 "Socket is not connected", /* 57 - ENOTCONN */
121 "Can't send after socket shutdown", /* 58 - ESHUTDOWN */
122 "Too many references: can't splice", /* 59 - ETOOMANYREFS */
123 "Operation timed out", /* 60 - ETIMEDOUT */
124 "Connection refused", /* 61 - ECONNREFUSED */
126 "Too many levels of symbolic links", /* 62 - ELOOP */
127 "File name too long", /* 63 - ENAMETOOLONG */
129 /* should be rearranged */
130 "Host is down", /* 64 - EHOSTDOWN */
131 "No route to host", /* 65 - EHOSTUNREACH */
132 "Directory not empty", /* 66 - ENOTEMPTY */
135 "Too many processes", /* 67 - EPROCLIM */
136 "Too many users", /* 68 - EUSERS */
137 "Disc quota exceeded", /* 69 - EDQUOT */
139 /* Network File System */
140 "Stale NFS file handle", /* 70 - ESTALE */
141 "Too many levels of remote in path", /* 71 - EREMOTE */
142 "RPC struct is bad", /* 72 - EBADRPC */
143 "RPC version wrong", /* 73 - ERPCMISMATCH */
144 "RPC prog. not avail", /* 74 - EPROGUNAVAIL */
145 "Program version wrong", /* 75 - EPROGMISMATCH */
146 "Bad procedure for program", /* 76 - EPROCUNAVAIL */
148 "No locks available", /* 77 - ENOLCK */
149 "Function not implemented", /* 78 - ENOSYS */
151 "Inappropriate file type or format", /* 79 - EFTYPE */
153 const int sys_nerr
= { sizeof(sys_errlist
) / sizeof(sys_errlist
[0]) };