#ifndef _PARISC_ERRNO_H1#define _PARISC_ERRNO_H23#include <asm-generic/errno-base.h>45#define ENOMSG 35 /* No message of desired type */6#define EIDRM 36 /* Identifier removed */7#define ECHRNG 37 /* Channel number out of range */8#define EL2NSYNC 38 /* Level 2 not synchronized */9#define EL3HLT 39 /* Level 3 halted */10#define EL3RST 40 /* Level 3 reset */11#define ELNRNG 41 /* Link number out of range */12#define EUNATCH 42 /* Protocol driver not attached */13#define ENOCSI 43 /* No CSI structure available */14#define EL2HLT 44 /* Level 2 halted */15#define EDEADLK 45 /* Resource deadlock would occur */16#define EDEADLOCK EDEADLK17#define ENOLCK 46 /* No record locks available */18#define EILSEQ 47 /* Illegal byte sequence */1920#define ENONET 50 /* Machine is not on the network */21#define ENODATA 51 /* No data available */22#define ETIME 52 /* Timer expired */23#define ENOSR 53 /* Out of streams resources */24#define ENOSTR 54 /* Device not a stream */25#define ENOPKG 55 /* Package not installed */2627#define ENOLINK 57 /* Link has been severed */28#define EADV 58 /* Advertise error */29#define ESRMNT 59 /* Srmount error */30#define ECOMM 60 /* Communication error on send */31#define EPROTO 61 /* Protocol error */3233#define EMULTIHOP 64 /* Multihop attempted */3435#define EDOTDOT 66 /* RFS specific error */36#define EBADMSG 67 /* Not a data message */37#define EUSERS 68 /* Too many users */38#define EDQUOT 69 /* Quota exceeded */39#define ESTALE 70 /* Stale NFS file handle */40#define EREMOTE 71 /* Object is remote */41#define EOVERFLOW 72 /* Value too large for defined data type */4243/* these errnos are defined by Linux but not HPUX. */4445#define EBADE 160 /* Invalid exchange */46#define EBADR 161 /* Invalid request descriptor */47#define EXFULL 162 /* Exchange full */48#define ENOANO 163 /* No anode */49#define EBADRQC 164 /* Invalid request code */50#define EBADSLT 165 /* Invalid slot */51#define EBFONT 166 /* Bad font file format */52#define ENOTUNIQ 167 /* Name not unique on network */53#define EBADFD 168 /* File descriptor in bad state */54#define EREMCHG 169 /* Remote address changed */55#define ELIBACC 170 /* Can not access a needed shared library */56#define ELIBBAD 171 /* Accessing a corrupted shared library */57#define ELIBSCN 172 /* .lib section in a.out corrupted */58#define ELIBMAX 173 /* Attempting to link in too many shared libraries */59#define ELIBEXEC 174 /* Cannot exec a shared library directly */60#define ERESTART 175 /* Interrupted system call should be restarted */61#define ESTRPIPE 176 /* Streams pipe error */62#define EUCLEAN 177 /* Structure needs cleaning */63#define ENOTNAM 178 /* Not a XENIX named type file */64#define ENAVAIL 179 /* No XENIX semaphores available */65#define EISNAM 180 /* Is a named type file */66#define EREMOTEIO 181 /* Remote I/O error */67#define ENOMEDIUM 182 /* No medium found */68#define EMEDIUMTYPE 183 /* Wrong medium type */69#define ENOKEY 184 /* Required key not available */70#define EKEYEXPIRED 185 /* Key has expired */71#define EKEYREVOKED 186 /* Key has been revoked */72#define EKEYREJECTED 187 /* Key was rejected by service */7374/* We now return you to your regularly scheduled HPUX. */7576#define ENOSYM 215 /* symbol does not exist in executable */77#define ENOTSOCK 216 /* Socket operation on non-socket */78#define EDESTADDRREQ 217 /* Destination address required */79#define EMSGSIZE 218 /* Message too long */80#define EPROTOTYPE 219 /* Protocol wrong type for socket */81#define ENOPROTOOPT 220 /* Protocol not available */82#define EPROTONOSUPPORT 221 /* Protocol not supported */83#define ESOCKTNOSUPPORT 222 /* Socket type not supported */84#define EOPNOTSUPP 223 /* Operation not supported on transport endpoint */85#define EPFNOSUPPORT 224 /* Protocol family not supported */86#define EAFNOSUPPORT 225 /* Address family not supported by protocol */87#define EADDRINUSE 226 /* Address already in use */88#define EADDRNOTAVAIL 227 /* Cannot assign requested address */89#define ENETDOWN 228 /* Network is down */90#define ENETUNREACH 229 /* Network is unreachable */91#define ENETRESET 230 /* Network dropped connection because of reset */92#define ECONNABORTED 231 /* Software caused connection abort */93#define ECONNRESET 232 /* Connection reset by peer */94#define ENOBUFS 233 /* No buffer space available */95#define EISCONN 234 /* Transport endpoint is already connected */96#define ENOTCONN 235 /* Transport endpoint is not connected */97#define ESHUTDOWN 236 /* Cannot send after transport endpoint shutdown */98#define ETOOMANYREFS 237 /* Too many references: cannot splice */99#define EREFUSED ECONNREFUSED /* for HP's NFS apparently */100#define ETIMEDOUT 238 /* Connection timed out */101#define ECONNREFUSED 239 /* Connection refused */102#define EREMOTERELEASE 240 /* Remote peer released connection */103#define EHOSTDOWN 241 /* Host is down */104#define EHOSTUNREACH 242 /* No route to host */105106#define EALREADY 244 /* Operation already in progress */107#define EINPROGRESS 245 /* Operation now in progress */108#define EWOULDBLOCK 246 /* Operation would block (Linux returns EAGAIN) */109#define ENOTEMPTY 247 /* Directory not empty */110#define ENAMETOOLONG 248 /* File name too long */111#define ELOOP 249 /* Too many symbolic links encountered */112#define ENOSYS 251 /* Function not implemented */113114#define ENOTSUP 252 /* Function not implemented (POSIX.4 / HPUX) */115#define ECANCELLED 253 /* aio request was canceled before complete (POSIX.4 / HPUX) */116#define ECANCELED ECANCELLED /* SuSv3 and Solaris wants one 'L' */117118/* for robust mutexes */119#define EOWNERDEAD 254 /* Owner died */120#define ENOTRECOVERABLE 255 /* State not recoverable */121122#define ERFKILL 256 /* Operation not possible due to RF-kill */123124#define EHWPOISON 257 /* Memory page has hardware error */125126#endif127128129