1 /* $NetBSD: linux_errno.h,v 1.2 2005/12/11 12:20:14 christos Exp $ */ 2 3 /*- 4 * Copyright (c) 2005 Emmanuel Dreyfus, all rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. All advertising materials mentioning features or use of this software 15 * must display the following acknowledgement: 16 * This product includes software developed by Emmanuel Dreyfus 17 * 4. The name of the author may not be used to endorse or promote 18 * products derived from this software without specific prior written 19 * permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE THE AUTHOR AND CONTRIBUTORS ``AS IS'' 22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 23 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS 25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 31 * POSSIBILITY OF SUCH DAMAGE. 32 */ 33 34 #ifndef _AMD64_LINUX_ERRNO_H 35 #define _AMD64_LINUX_ERRNO_H 36 37 /* 38 * Linux/amd64 returns nagative errors to userland 39 */ 40 #define LINUX_SCERR_SIGN - 41 42 /* 43 * errno 1 to 35 are in <compat/linux/common/linux_errno.h> 44 */ 45 #define LINUX_ENAMETOOLONG 36 46 #define LINUX_ENOLCK 37 47 #define LINUX_ENOSYS 38 48 #define LINUX_ENOTEMPTY 39 49 #define LINUX_ELOOP 40 50 #define LINUX_ENOMSG 42 51 #define LINUX_EIDRM 43 52 #define LINUX_ECHRNG 44 53 #define LINUX_EL2NSYNC 45 54 #define LINUX_EL3HLT 46 55 #define LINUX_EL3RST 47 56 #define LINUX_ELNRNG 48 57 #define LINUX_EUNATCH 49 58 #define LINUX_ENOCSI 50 59 #define LINUX_EL2HLT 51 60 #define LINUX_EBADE 52 61 #define LINUX_EBADR 53 62 #define LINUX_EXFULL 54 63 #define LINUX_ENOANO 55 64 #define LINUX_EBADRQC 56 65 #define LINUX_EBADSLT 57 66 #define LINUX_EDEADLOCK 58 67 #define LINUX_EBFONT 59 68 #define LINUX_ENOSTR 60 69 #define LINUX_ENODATA 61 70 #define LINUX_ETIME 62 71 #define LINUX_ENOSR 63 72 #define LINUX_ENONET 64 73 #define LINUX_ENOPKG 65 74 #define LINUX_EREMOTE 66 75 #define LINUX_ENOLINK 67 76 #define LINUX_EADV 68 77 #define LINUX_ESRMNT 69 78 #define LINUX_ECOMM 70 79 #define LINUX_EPROTO 71 80 #define LINUX_EMULTIHOP 72 81 #define LINUX_EDOTDOT 73 82 #define LINUX_EBADMSG 74 83 #define LINUX_EOVERFLOW 75 84 #define LINUX_ENOTUNIQ 76 85 #define LINUX_EBADFD 77 86 #define LINUX_EREMCHG 78 87 #define LINUX_ELIBACC 79 88 #define LINUX_ELIBBAD 80 89 #define LINUX_ELIBSCN 81 90 #define LINUX_ELIBMAX 82 91 #define LINUX_ELIBEXEC 83 92 #define LINUX_EILSEQ 84 93 #define LINUX_ERESTART 85 94 #define LINUX_ESTRPIPE 86 95 #define LINUX_EUSERS 87 96 #define LINUX_ENOTSOCK 88 97 #define LINUX_EDESTADDRREQ 89 98 #define LINUX_EMSGSIZE 90 99 #define LINUX_EPROTOTYPE 91 100 #define LINUX_ENOPROTOOPT 92 101 #define LINUX_EPROTONOSUPPORT 93 102 #define LINUX_ESOCKTNOSUPPORT 94 103 #define LINUX_EOPNOTSUPP 95 104 #define LINUX_EPFNOSUPPORT 96 105 #define LINUX_EAFNOSUPPORT 97 106 #define LINUX_EADDRINUSE 98 107 #define LINUX_EADDRNOTAVAIL 99 108 #define LINUX_ENETDOWN 100 109 #define LINUX_ENETUNREACH 101 110 #define LINUX_ENETRESET 102 111 #define LINUX_ECONNABORTED 103 112 #define LINUX_ECONNRESET 104 113 #define LINUX_ENOBUFS 105 114 #define LINUX_EISCONN 106 115 #define LINUX_ENOTCONN 107 116 #define LINUX_ESHUTDOWN 108 117 #define LINUX_ETOOMANYREFS 109 118 #define LINUX_ETIMEDOUT 110 119 #define LINUX_ECONNREFUSED 111 120 #define LINUX_EHOSTDOWN 112 121 #define LINUX_EHOSTUNREACH 113 122 #define LINUX_EALREADY 114 123 #define LINUX_EINPROGRESS 115 124 #define LINUX_ESTALE 116 125 #define LINUX_EUCLEAN 117 126 #define LINUX_ENOTNAM 118 127 #define LINUX_ENAVAIL 119 128 #define LINUX_EISNAM 120 129 #define LINUX_EREMOTEIO 121 130 #define LINUX_EDQUOT 122 131 #define LINUX_ENOMEDIUM 123 132 #define LINUX_EMEDIUMTYPE 124 133 134 #endif /* !_AMD64_LINUX_ERRNO_H */ 135 136