18f968b6aSPhilippe Mathieu-Daudé #ifndef ALPHA_TARGET_ERRNO_DEFS_H
28f968b6aSPhilippe Mathieu-Daudé #define ALPHA_TARGET_ERRNO_DEFS_H
38f968b6aSPhilippe Mathieu-Daudé 
48f968b6aSPhilippe Mathieu-Daudé #include "../generic/target_errno_defs.h"
58f968b6aSPhilippe Mathieu-Daudé 
6*a4c7e27dSPhilippe Mathieu-Daudé /*
7*a4c7e27dSPhilippe Mathieu-Daudé  * Generic target errno overridden with definitions taken
8*a4c7e27dSPhilippe Mathieu-Daudé  * from asm-alpha/errno.h
9*a4c7e27dSPhilippe Mathieu-Daudé  */
10*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EWOULDBLOCK
11*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EWOULDBLOCK      TARGET_EAGAIN
12*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EDEADLK
13*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EDEADLK          11
14*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EAGAIN
15*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EAGAIN           35
16*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EINPROGRESS
17*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EINPROGRESS      36
18*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EALREADY
19*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EALREADY         37
20*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOTSOCK
21*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOTSOCK         38
22*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EDESTADDRREQ
23*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EDESTADDRREQ     39
24*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EMSGSIZE
25*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EMSGSIZE         40
26*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EPROTOTYPE
27*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EPROTOTYPE       41
28*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOPROTOOPT
29*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOPROTOOPT      42
30*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EPROTONOSUPPORT
31*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EPROTONOSUPPORT  43
32*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ESOCKTNOSUPPORT
33*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ESOCKTNOSUPPORT  44
34*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EOPNOTSUPP
35*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EOPNOTSUPP       45
36*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EPFNOSUPPORT
37*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EPFNOSUPPORT     46
38*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EAFNOSUPPORT
39*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EAFNOSUPPORT     47
40*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EADDRINUSE
41*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EADDRINUSE       48
42*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EADDRNOTAVAIL
43*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EADDRNOTAVAIL    49
44*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENETDOWN
45*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENETDOWN         50
46*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENETUNREACH
47*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENETUNREACH      51
48*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENETRESET
49*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENETRESET        52
50*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ECONNABORTED
51*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ECONNABORTED     53
52*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ECONNRESET
53*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ECONNRESET       54
54*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOBUFS
55*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOBUFS          55
56*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EISCONN
57*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EISCONN          56
58*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOTCONN
59*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOTCONN         57
60*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ESHUTDOWN
61*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ESHUTDOWN        58
62*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ETOOMANYREFS
63*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ETOOMANYREFS     59
64*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ETIMEDOUT
65*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ETIMEDOUT        60
66*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ECONNREFUSED
67*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ECONNREFUSED     61
68*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ELOOP
69*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ELOOP            62
70*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENAMETOOLONG
71*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENAMETOOLONG     63
72*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EHOSTDOWN
73*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EHOSTDOWN        64
74*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EHOSTUNREACH
75*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EHOSTUNREACH     65
76*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOTEMPTY
77*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOTEMPTY        66
78*a4c7e27dSPhilippe Mathieu-Daudé /* Unused                       67 */
79*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EUSERS
80*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EUSERS           68
81*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EDQUOT
82*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EDQUOT           69
83*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ESTALE
84*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ESTALE           70
85*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EREMOTE
86*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EREMOTE          71
87*a4c7e27dSPhilippe Mathieu-Daudé /* Unused                       72-76 */
88*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOLCK
89*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOLCK           77
90*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOSYS
91*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOSYS           78
92*a4c7e27dSPhilippe Mathieu-Daudé /* Unused                       79 */
93*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOMSG
94*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOMSG           80
95*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EIDRM
96*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EIDRM            81
97*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOSR
98*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOSR            82
99*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ETIME
100*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ETIME            83
101*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EBADMSG
102*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EBADMSG          84
103*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EPROTO
104*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EPROTO           85
105*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENODATA
106*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENODATA          86
107*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOSTR
108*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOSTR           87
109*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ECHRNG
110*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ECHRNG           88
111*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EL2NSYNC
112*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EL2NSYNC         89
113*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EL3HLT
114*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EL3HLT           90
115*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EL3RST
116*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EL3RST           91
117*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOPKG
118*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOPKG           92
119*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ELNRNG
120*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ELNRNG           93
121*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EUNATCH
122*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EUNATCH          94
123*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOCSI
124*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOCSI           95
125*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EL2HLT
126*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EL2HLT           96
127*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EBADE
128*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EBADE            97
129*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EBADR
130*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EBADR            98
131*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EXFULL
132*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EXFULL           99
133*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOANO
134*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOANO           100
135*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EBADRQC
136*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EBADRQC          101
137*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EBADSLT
138*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EBADSLT          102
139*a4c7e27dSPhilippe Mathieu-Daudé /* Unused                       103 */
140*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EBFONT
141*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EBFONT           104
142*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENONET
143*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENONET           105
144*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOLINK
145*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOLINK          106
146*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EADV
147*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EADV             107
148*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ESRMNT
149*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ESRMNT           108
150*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ECOMM
151*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ECOMM            109
152*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EMULTIHOP
153*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EMULTIHOP        110
154*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EDOTDOT
155*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EDOTDOT          111
156*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EOVERFLOW
157*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EOVERFLOW        112
158*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOTUNIQ
159*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOTUNIQ         113
160*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EBADFD
161*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EBADFD           114
162*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EREMCHG
163*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EREMCHG          115
164*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EILSEQ
165*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EILSEQ           116
166*a4c7e27dSPhilippe Mathieu-Daudé /* Same as default              117-121 */
167*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ELIBACC
168*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ELIBACC          122
169*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ELIBBAD
170*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ELIBBAD          123
171*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ELIBSCN
172*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ELIBSCN          124
173*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ELIBMAX
174*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ELIBMAX          125
175*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ELIBEXEC
176*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ELIBEXEC         126
177*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ERESTART
178*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ERESTART         127
179*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ESTRPIPE
180*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ESTRPIPE         128
181*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOMEDIUM
182*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOMEDIUM        129
183*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EMEDIUMTYPE
184*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EMEDIUMTYPE      130
185*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ECANCELED
186*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ECANCELED        131
187*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOKEY
188*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOKEY           132
189*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EKEYEXPIRED
190*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EKEYEXPIRED      133
191*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EKEYREVOKED
192*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EKEYREVOKED      134
193*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EKEYREJECTED
194*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EKEYREJECTED     135
195*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EOWNERDEAD
196*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EOWNERDEAD       136
197*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ENOTRECOVERABLE
198*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ENOTRECOVERABLE  137
199*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_ERFKILL
200*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_ERFKILL          138
201*a4c7e27dSPhilippe Mathieu-Daudé #undef TARGET_EHWPOISON
202*a4c7e27dSPhilippe Mathieu-Daudé #define TARGET_EHWPOISON        139
203*a4c7e27dSPhilippe Mathieu-Daudé 
2048f968b6aSPhilippe Mathieu-Daudé #endif
205