xref: /netbsd-src/sys/compat/linux/arch/arm/linux_errno.h (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /* 	$NetBSD: linux_errno.h,v 1.6 2008/04/28 20:23:42 martin Exp $	*/
2 
3 /*-
4  * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Frank van der Linden and Eric Haszlakiewicz.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
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.
18  *
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.
30  */
31 
32 #ifndef _ARM_LINUX_ERRNO_H
33 #define _ARM_LINUX_ERRNO_H
34 
35 /*
36  * Linux/arm returns negative errors to userland
37  * The libc makes the errno positive.
38  */
39 #define LINUX_SCERR_SIGN -
40 
41 /* Use common/linux_errno.h for #1-35 */
42 
43 
44 #define LINUX_ENAMETOOLONG	36
45 #define LINUX_ENOLCK		37
46 #define LINUX_ENOSYS		38
47 #define LINUX_ENOTEMPTY		39
48 #define LINUX_ELOOP		40
49 #define LINUX_ENOMSG		42
50 #define LINUX_EIDRM		43
51 #define LINUX_ECHRNG		44
52 #define LINUX_EL2NSYNC		45
53 #define LINUX_EL3HLT		46
54 #define LINUX_EL3RST		47
55 #define LINUX_ELNRNG		48
56 #define LINUX_EUNATCH		49
57 #define LINUX_ENOCSI		50
58 #define LINUX_EL2HLT		51
59 #define LINUX_EBADE		52
60 #define LINUX_EBADR		53
61 #define LINUX_EXFULL		54
62 #define LINUX_ENOANO		55
63 #define LINUX_EBADRQC		56
64 #define LINUX_EBADSLT		57
65 #define LINUX_EDEADLOCK		58
66 #define LINUX_EBFONT		59
67 #define LINUX_ENOSTR		60
68 #define LINUX_ENODATA		61
69 #define LINUX_ETIME		62
70 #define LINUX_ENOSR		63
71 #define LINUX_ENONET		64
72 #define LINUX_ENOPKG		65
73 #define LINUX_EREMOTE		66
74 #define LINUX_ENOLINK		67
75 #define LINUX_EADV		68
76 #define LINUX_ESRMNT		69
77 #define LINUX_ECOMM		70
78 #define LINUX_EPROTO		71
79 #define LINUX_EMULTIHOP		72
80 #define LINUX_EDOTDOT		73
81 #define LINUX_EBADMSG		74
82 #define LINUX_EOVERFLOW		75
83 #define LINUX_ENOTUNIQ		76
84 #define LINUX_EBADFD		77
85 #define LINUX_EREMCHG		78
86 #define LINUX_ELIBACC		79
87 #define LINUX_ELIBBAD		80
88 #define LINUX_ELIBSCN		81
89 #define LINUX_ELIBMAX		82
90 #define LINUX_ELIBEXEC		83
91 #define LINUX_EILSEQ		84
92 #define LINUX_ERESTART		85
93 #define LINUX_ESTRPIPE		86
94 #define LINUX_EUSERS		87
95 #define LINUX_ENOTSOCK		88
96 #define LINUX_EDESTADDRREQ	89
97 #define LINUX_EMSGSIZE		90
98 #define LINUX_EPROTOTYPE	91
99 #define LINUX_ENOPROTOOPT	92
100 #define LINUX_EPROTONOSUPPORT	93
101 #define LINUX_ESOCKTNOSUPPORT	94
102 #define LINUX_EOPNOTSUPP	95
103 #define LINUX_EPFNOSUPPORT	96
104 #define LINUX_EAFNOSUPPORT	97
105 #define LINUX_EADDRINUSE	98
106 #define LINUX_EADDRNOTAVAIL	99
107 #define LINUX_ENETDOWN		100
108 #define LINUX_ENETUNREACH	101
109 #define LINUX_ENETRESET		102
110 #define LINUX_ECONNABORTED	103
111 #define LINUX_ECONNRESET	104
112 #define LINUX_ENOBUFS		105
113 #define LINUX_EISCONN		106
114 #define LINUX_ENOTCONN		107
115 #define LINUX_ESHUTDOWN		108
116 #define LINUX_ETOOMANYREFS	109
117 #define LINUX_ETIMEDOUT		110
118 #define LINUX_ECONNREFUSED	111
119 #define LINUX_EHOSTDOWN		112
120 #define LINUX_EHOSTUNREACH	113
121 #define LINUX_EALREADY		114
122 #define LINUX_EINPROGRESS	115
123 #define LINUX_ESTALE		116
124 #define LINUX_EUCLEAN		117
125 #define LINUX_ENOTNAM		118
126 #define LINUX_ENAVAIL		119
127 #define LINUX_EISNAM		120
128 #define LINUX_EREMOTEIO		121
129 #define LINUX_EDQUOT		122
130 #define LINUX_ENOMEDIUM		123
131 #define LINUX_EMEDIUMTYPE	124
132 
133 #endif
134