]> git.saurik.com Git - apple/libc.git/blame - gen.subproj/errlst.c
Libc-166.tar.gz
[apple/libc.git] / gen.subproj / errlst.c
CommitLineData
e9ce8d39
A
1/*
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22/*
23 * Copyright (c) 1982, 1985, 1993
24 * The Regents of the University of California. All rights reserved.
25 *
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
28 * are met:
29 * 1. Redistributions of source code must retain the above copyright
30 * notice, this list of conditions and the following disclaimer.
31 * 2. Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in the
33 * documentation and/or other materials provided with the distribution.
34 * 3. All advertising materials mentioning features or use of this software
35 * must display the following acknowledgement:
36 * This product includes software developed by the University of
37 * California, Berkeley and its contributors.
38 * 4. Neither the name of the University nor the names of its contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
41 *
42 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
52 * SUCH DAMAGE.
53 */
54
55
56#include <stdio.h>
57
58const char *const sys_errlist[] = {
59 "Undefined error: 0", /* 0 - ENOERROR */
60 "Operation not permitted", /* 1 - EPERM */
61 "No such file or directory", /* 2 - ENOENT */
62 "No such process", /* 3 - ESRCH */
63 "Interrupted system call", /* 4 - EINTR */
64 "Input/output error", /* 5 - EIO */
65 "Device not configured", /* 6 - ENXIO */
66 "Argument list too long", /* 7 - E2BIG */
67 "Exec format error", /* 8 - ENOEXEC */
68 "Bad file descriptor", /* 9 - EBADF */
69 "No child processes", /* 10 - ECHILD */
70 "Resource deadlock avoided", /* 11 - EDEADLK */
71 "Cannot allocate memory", /* 12 - ENOMEM */
72 "Permission denied", /* 13 - EACCES */
73 "Bad address", /* 14 - EFAULT */
74 "Block device required", /* 15 - ENOTBLK */
75 "Device busy", /* 16 - EBUSY */
76 "File exists", /* 17 - EEXIST */
77 "Cross-device link", /* 18 - EXDEV */
78 "Operation not supported by device", /* 19 - ENODEV */
79 "Not a directory", /* 20 - ENOTDIR */
80 "Is a directory", /* 21 - EISDIR */
81 "Invalid argument", /* 22 - EINVAL */
82 "Too many open files in system", /* 23 - ENFILE */
83 "Too many open files", /* 24 - EMFILE */
84 "Inappropriate ioctl for device", /* 25 - ENOTTY */
85 "Text file busy", /* 26 - ETXTBSY */
86 "File too large", /* 27 - EFBIG */
87 "No space left on device", /* 28 - ENOSPC */
88 "Illegal seek", /* 29 - ESPIPE */
89 "Read-only file system", /* 30 - EROFS */
90 "Too many links", /* 31 - EMLINK */
91 "Broken pipe", /* 32 - EPIPE */
92
93/* math software */
94 "Numerical argument out of domain", /* 33 - EDOM */
95 "Result too large", /* 34 - ERANGE */
96
97/* non-blocking and interrupt i/o */
98 "Resource temporarily unavailable", /* 35 - EAGAIN */
99 /* 35 - EWOULDBLOCK */
100 "Operation now in progress", /* 36 - EINPROGRESS */
101 "Operation already in progress", /* 37 - EALREADY */
102
103/* ipc/network software -- argument errors */
104 "Socket operation on non-socket", /* 38 - ENOTSOCK */
105 "Destination address required", /* 39 - EDESTADDRREQ */
106 "Message too long", /* 40 - EMSGSIZE */
107 "Protocol wrong type for socket", /* 41 - EPROTOTYPE */
108 "Protocol not available", /* 42 - ENOPROTOOPT */
109 "Protocol not supported", /* 43 - EPROTONOSUPPORT */
110 "Socket type not supported", /* 44 - ESOCKTNOSUPPORT */
111 "Operation not supported", /* 45 - EOPNOTSUPP */
112 "Protocol family not supported", /* 46 - EPFNOSUPPORT */
113 /* 47 - EAFNOSUPPORT */
114 "Address family not supported by protocol family",
115 "Address already in use", /* 48 - EADDRINUSE */
116 "Can't assign requested address", /* 49 - EADDRNOTAVAIL */
117
118/* ipc/network software -- operational errors */
119 "Network is down", /* 50 - ENETDOWN */
120 "Network is unreachable", /* 51 - ENETUNREACH */
121 "Network dropped connection on reset", /* 52 - ENETRESET */
122 "Software caused connection abort", /* 53 - ECONNABORTED */
123 "Connection reset by peer", /* 54 - ECONNRESET */
124 "No buffer space available", /* 55 - ENOBUFS */
125 "Socket is already connected", /* 56 - EISCONN */
126 "Socket is not connected", /* 57 - ENOTCONN */
127 "Can't send after socket shutdown", /* 58 - ESHUTDOWN */
128 "Too many references: can't splice", /* 59 - ETOOMANYREFS */
129 "Operation timed out", /* 60 - ETIMEDOUT */
130 "Connection refused", /* 61 - ECONNREFUSED */
131
132 "Too many levels of symbolic links", /* 62 - ELOOP */
133 "File name too long", /* 63 - ENAMETOOLONG */
134
135/* should be rearranged */
136 "Host is down", /* 64 - EHOSTDOWN */
137 "No route to host", /* 65 - EHOSTUNREACH */
138 "Directory not empty", /* 66 - ENOTEMPTY */
139
140/* quotas & mush */
141 "Too many processes", /* 67 - EPROCLIM */
142 "Too many users", /* 68 - EUSERS */
143 "Disc quota exceeded", /* 69 - EDQUOT */
144
145/* Network File System */
146 "Stale NFS file handle", /* 70 - ESTALE */
147 "Too many levels of remote in path", /* 71 - EREMOTE */
148 "RPC struct is bad", /* 72 - EBADRPC */
149 "RPC version wrong", /* 73 - ERPCMISMATCH */
150 "RPC prog. not avail", /* 74 - EPROGUNAVAIL */
151 "Program version wrong", /* 75 - EPROGMISMATCH */
152 "Bad procedure for program", /* 76 - EPROCUNAVAIL */
153
154 "No locks available", /* 77 - ENOLCK */
155 "Function not implemented", /* 78 - ENOSYS */
156 "Inappropriate file type or format", /* 79 - EFTYPE */
157 "Authentication error", /* 80 - EAUTH */
158 "Need authenticator", /* 81 - ENEEDAUTH */
159
160 "Device power is off", /* 82 - EPWROFF */
161 "Device error", /* 83 - EDEVERR */
162 "Value too large to be stored in data type", /* 84 - EOVERFLOW */
163
164/* program loading errors */
165 "Bad executable (or shared library)", /* 85 - EBADEXEC */
166 "Bad CPU type in executable", /* 86 - EBADARCH */
167 "Shared library version mismatch", /* 87 - ESHLIBVERS */
168 "Malformed Mach-o file" /* 88 - EBADMACHO */
169};
170
171int errno;
172
173const int sys_nerr = sizeof(sys_errlist) / sizeof(sys_errlist[0]);