1 /* $NetBSD: linux_errno.h,v 1.5 2005/12/11 12:20:16 christos Exp $ */
4 * Copyright (c) 2001 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #ifndef _MIPS_LINUX_ERRNO_H
33 #define _MIPS_LINUX_ERRNO_H
36 * Linux/mips returns negative errors to userland
37 * The libc makes the errno positive.
39 #define LINUX_SCERR_SIGN +
41 /* Use common/linux_errno.h for #1-35 */
43 /* Linux/mips switches EDEADLK and ENOMSG. */
45 #define LINUX_EDEADLK 45
46 #define LINUX_ENOMSG 35
49 * From Linux's include/asm-mips/errno.h
51 #define LINUX_EIDRM 36
52 #define LINUX_ECHRNG 37
53 #define LINUX_EL2NSYNC 38
54 #define LINUX_EL3HLT 39
55 #define LINUX_EL3RST 40
56 #define LINUX_ELNRNG 41
57 #define LINUX_EUNATCH 42
58 #define LINUX_ENOCSI 43
59 #define LINUX_EL2HLT 44
60 /* LINUX_EDEADLK defined above */
61 #define LINUX_ENOLCK 46
62 #define LINUX_EBADE 50
63 #define LINUX_EBADR 51
64 #define LINUX_EXFULL 52
65 #define LINUX_ENOANO 53
66 #define LINUX_EBADRQC 54
67 #define LINUX_EBADSLT 55
68 #define LINUX_EDEADLOCK 56
69 #define LINUX_EBFONT 59
70 #define LINUX_ENOSTR 60
71 #define LINUX_ENODATA 61
72 #define LINUX_ETIME 62
73 #define LINUX_ENOSR 63
74 #define LINUX_ENONET 64
75 #define LINUX_ENOPKG 65
76 #define LINUX_EREMOTE 66
77 #define LINUX_ENOLINK 67
79 #define LINUX_ESRMNT 69
80 #define LINUX_ECOMM 70
81 #define LINUX_EPROTO 71
82 #define LINUX_EDOTDOT 73
83 #define LINUX_EMULTIHOP 74
84 #define LINUX_EBADMSG 77
85 #define LINUX_ENAMETOOLONG 78
86 #define LINUX_EOVERFLOW 79
87 #define LINUX_ENOTUNIQ 80
88 #define LINUX_EBADFD 81
89 #define LINUX_EREMCHG 82
90 #define LINUX_ELIBACC 83
91 #define LINUX_ELIBBAD 84
92 #define LINUX_ELIBSCN 85
93 #define LINUX_ELIBMAX 86
94 #define LINUX_ELIBEXEC 87
95 #define LINUX_EILSEQ 88
96 #define LINUX_ENOSYS 89
97 #define LINUX_ELOOP 90
98 #define LINUX_ERESTART 91
99 #define LINUX_ESTRPIPE 92
100 #define LINUX_ENOTEMPTY 93
101 #define LINUX_EUSERS 94
102 #define LINUX_ENOTSOCK 95
103 #define LINUX_EDESTADDRREQ 96
104 #define LINUX_EMSGSIZE 97
105 #define LINUX_EPROTOTYPE 98
106 #define LINUX_ENOPROTOOPT 99
107 #define LINUX_EPROTONOSUPPORT 120
108 #define LINUX_ESOCKTNOSUPPORT 121
109 #define LINUX_EOPNOTSUPP 122
110 #define LINUX_EPFNOSUPPORT 123
111 #define LINUX_EAFNOSUPPORT 124
112 #define LINUX_EADDRINUSE 125
113 #define LINUX_EADDRNOTAVAIL 126
114 #define LINUX_ENETDOWN 127
115 #define LINUX_ENETUNREACH 128
116 #define LINUX_ENETRESET 129
117 #define LINUX_ECONNABORTED 130
118 #define LINUX_ECONNRESET 131
119 #define LINUX_ENOBUFS 132
120 #define LINUX_EISCONN 133
121 #define LINUX_ENOTCONN 134
122 #define LINUX_EUCLEAN 135
123 #define LINUX_ENOTNAM 137
124 #define LINUX_ENAVAIL 138
125 #define LINUX_EISNAM 139
126 #define LINUX_EREMOTEIO 140
127 #define LINUX_EINIT 141
128 #define LINUX_EREMDEV 142
129 #define LINUX_ESHUTDOWN 143
130 #define LINUX_ETOOMANYREFS 144
131 #define LINUX_ETIMEDOUT 145
132 #define LINUX_ECONNREFUSED 146
133 #define LINUX_EHOSTDOWN 147
134 #define LINUX_EHOSTUNREACH 148
135 #define LINUX_EWOULDBLOCK LINUX_EAGAIN
136 #define LINUX_EALREADY 149
137 #define LINUX_EINPROGRESS 150
138 #define LINUX_ESTALE 151
139 #define LINUX_ECANCELED 158
140 /* linux/include/asm-mips/errno.h states theses are Linux extensions */
141 #define LINUX_ENOMEDIUM 159
142 #define LINUX_EMEDIUMTYPE 160
143 #define LINUX_EDQUOT 1133
145 #define LINUX_EMAXERRNO 1133
147 #endif /* !_MIPS_LINUX_ERRNO_H */