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