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