BSD 4_3 release
[unix-history] / usr / src / lib / libc / gen / errlst.c
CommitLineData
bb0cfa24
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
2ce81398 7#if defined(LIBC_SCCS) && !defined(lint)
95f51977 8static char sccsid[] = "@(#)errlst.c 5.2 (Berkeley) 3/9/86";
2ce81398 9#endif LIBC_SCCS and not lint
bb0cfa24 10
0b74a67d
BJ
11char *sys_errlist[] = {
12 "Error 0",
07467f1b
BJ
13 "Not owner", /* 1 - EPERM */
14 "No such file or directory", /* 2 - ENOENT */
15 "No such process", /* 3 - ESRCH */
16 "Interrupted system call", /* 4 - EINTR */
17 "I/O error", /* 5 - EIO */
18 "No such device or address", /* 6 - ENXIO */
19 "Arg list too long", /* 7 - E2BIG */
20 "Exec format error", /* 8 - ENOEXEC */
21 "Bad file number", /* 9 - EBADF */
22 "No children", /* 10 - ECHILD */
23 "No more processes", /* 11 - EAGAIN */
842a3b7c 24 "Not enough memory", /* 12 - ENOMEM */
07467f1b
BJ
25 "Permission denied", /* 13 - EACCES */
26 "Bad address", /* 14 - EFAULT */
27 "Block device required", /* 15 - ENOTBLK */
842a3b7c 28 "Device busy", /* 16 - EBUSY */
07467f1b
BJ
29 "File exists", /* 17 - EEXIST */
30 "Cross-device link", /* 18 - EXDEV */
31 "No such device", /* 19 - ENODEV */
32 "Not a directory", /* 20 - ENOTDIR */
33 "Is a directory", /* 21 - EISDIR */
34 "Invalid argument", /* 22 - EINVAL */
35 "File table overflow", /* 23 - ENFILE */
36 "Too many open files", /* 24 - EMFILE */
842a3b7c 37 "Inappropriate ioctl for device", /* 25 - ENOTTY */
07467f1b
BJ
38 "Text file busy", /* 26 - ETXTBSY */
39 "File too large", /* 27 - EFBIG */
40 "No space left on device", /* 28 - ENOSPC */
41 "Illegal seek", /* 29 - ESPIPE */
42 "Read-only file system", /* 30 - EROFS */
43 "Too many links", /* 31 - EMLINK */
44 "Broken pipe", /* 32 - EPIPE */
45
46/* math software */
47 "Argument too large", /* 33 - EDOM */
48 "Result too large", /* 34 - ERANGE */
49
50/* non-blocking and interrupt i/o */
51 "Operation would block", /* 35 - EWOULDBLOCK */
52 "Operation now in progress", /* 36 - EINPROGRESS */
53 "Operation already in progress", /* 37 - EALREADY */
54
55/* ipc/network software */
56
57 /* argument errors */
58 "Socket operation on non-socket", /* 38 - ENOTSOCK */
59 "Destination address required", /* 39 - EDESTADDRREQ */
60 "Message too long", /* 40 - EMSGSIZE */
61 "Protocol wrong type for socket", /* 41 - EPROTOTYPE */
842a3b7c 62 "Option not supported by protocol", /* 42 - ENOPROTOOPT */
07467f1b
BJ
63 "Protocol not supported", /* 43 - EPROTONOSUPPORT */
64 "Socket type not supported", /* 44 - ESOCKTNOSUPPORT */
65 "Operation not supported on socket", /* 45 - EOPNOTSUPP */
66 "Protocol family not supported", /* 46 - EPFNOSUPPORT */
67 "Address family not supported by protocol family",
68 /* 47 - EAFNOSUPPORT */
69 "Address already in use", /* 48 - EADDRINUSE */
70 "Can't assign requested address", /* 49 - EADDRNOTAVAIL */
71
72 /* operational errors */
73 "Network is down", /* 50 - ENETDOWN */
74 "Network is unreachable", /* 51 - ENETUNREACH */
75 "Network dropped connection on reset", /* 52 - ENETRESET */
76 "Software caused connection abort", /* 53 - ECONNABORTED */
77 "Connection reset by peer", /* 54 - ECONNRESET */
78 "No buffer space available", /* 55 - ENOBUFS */
79 "Socket is already connected", /* 56 - EISCONN */
80 "Socket is not connected", /* 57 - ENOTCONN */
81 "Can't send after socket shutdown", /* 58 - ESHUTDOWN */
82 "Too many references: can't splice", /* 59 - ETOOMANYREFS */
83 "Connection timed out", /* 60 - ETIMEDOUT */
84 "Connection refused", /* 61 - EREFUSED */
33ab3975
BJ
85 "Too many levels of symbolic links", /* 62 - ELOOP */
86 "File name too long", /* 63 - ENAMETOOLONG */
6922d743
SL
87 "Host is down", /* 64 - EHOSTDOWN */
88 "Host is unreachable", /* 65 - EHOSTUNREACH */
e6b33875
SL
89 "Directory not empty", /* 66 - ENOTEMPTY */
90 "Too many processes", /* 67 - EPROCLIM */
91 "Too many users", /* 68 - EUSERS */
92 "Disc quota exceeded", /* 69 - EDQUOT */
0b74a67d
BJ
93};
94int sys_nerr = { sizeof sys_errlist/sizeof sys_errlist[0] };