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