#ifndef _ALPHA_ERRNO_H1#define _ALPHA_ERRNO_H23#include <asm-generic/errno-base.h>45#undef EAGAIN /* 11 in errno-base.h */67#define EDEADLK 11 /* Resource deadlock would occur */89#define EAGAIN 35 /* Try again */10#define EWOULDBLOCK EAGAIN /* Operation would block */11#define EINPROGRESS 36 /* Operation now in progress */12#define EALREADY 37 /* Operation already in progress */13#define ENOTSOCK 38 /* Socket operation on non-socket */14#define EDESTADDRREQ 39 /* Destination address required */15#define EMSGSIZE 40 /* Message too long */16#define EPROTOTYPE 41 /* Protocol wrong type for socket */17#define ENOPROTOOPT 42 /* Protocol not available */18#define EPROTONOSUPPORT 43 /* Protocol not supported */19#define ESOCKTNOSUPPORT 44 /* Socket type not supported */20#define EOPNOTSUPP 45 /* Operation not supported on transport endpoint */21#define EPFNOSUPPORT 46 /* Protocol family not supported */22#define EAFNOSUPPORT 47 /* Address family not supported by protocol */23#define EADDRINUSE 48 /* Address already in use */24#define EADDRNOTAVAIL 49 /* Cannot assign requested address */25#define ENETDOWN 50 /* Network is down */26#define ENETUNREACH 51 /* Network is unreachable */27#define ENETRESET 52 /* Network dropped connection because of reset */28#define ECONNABORTED 53 /* Software caused connection abort */29#define ECONNRESET 54 /* Connection reset by peer */30#define ENOBUFS 55 /* No buffer space available */31#define EISCONN 56 /* Transport endpoint is already connected */32#define ENOTCONN 57 /* Transport endpoint is not connected */33#define ESHUTDOWN 58 /* Cannot send after transport endpoint shutdown */34#define ETOOMANYREFS 59 /* Too many references: cannot splice */35#define ETIMEDOUT 60 /* Connection timed out */36#define ECONNREFUSED 61 /* Connection refused */37#define ELOOP 62 /* Too many symbolic links encountered */38#define ENAMETOOLONG 63 /* File name too long */39#define EHOSTDOWN 64 /* Host is down */40#define EHOSTUNREACH 65 /* No route to host */41#define ENOTEMPTY 66 /* Directory not empty */4243#define EUSERS 68 /* Too many users */44#define EDQUOT 69 /* Quota exceeded */45#define ESTALE 70 /* Stale NFS file handle */46#define EREMOTE 71 /* Object is remote */4748#define ENOLCK 77 /* No record locks available */49#define ENOSYS 78 /* Function not implemented */5051#define ENOMSG 80 /* No message of desired type */52#define EIDRM 81 /* Identifier removed */53#define ENOSR 82 /* Out of streams resources */54#define ETIME 83 /* Timer expired */55#define EBADMSG 84 /* Not a data message */56#define EPROTO 85 /* Protocol error */57#define ENODATA 86 /* No data available */58#define ENOSTR 87 /* Device not a stream */5960#define ENOPKG 92 /* Package not installed */6162#define EILSEQ 116 /* Illegal byte sequence */6364/* The following are just random noise.. */65#define ECHRNG 88 /* Channel number out of range */66#define EL2NSYNC 89 /* Level 2 not synchronized */67#define EL3HLT 90 /* Level 3 halted */68#define EL3RST 91 /* Level 3 reset */6970#define ELNRNG 93 /* Link number out of range */71#define EUNATCH 94 /* Protocol driver not attached */72#define ENOCSI 95 /* No CSI structure available */73#define EL2HLT 96 /* Level 2 halted */74#define EBADE 97 /* Invalid exchange */75#define EBADR 98 /* Invalid request descriptor */76#define EXFULL 99 /* Exchange full */77#define ENOANO 100 /* No anode */78#define EBADRQC 101 /* Invalid request code */79#define EBADSLT 102 /* Invalid slot */8081#define EDEADLOCK EDEADLK8283#define EBFONT 104 /* Bad font file format */84#define ENONET 105 /* Machine is not on the network */85#define ENOLINK 106 /* Link has been severed */86#define EADV 107 /* Advertise error */87#define ESRMNT 108 /* Srmount error */88#define ECOMM 109 /* Communication error on send */89#define EMULTIHOP 110 /* Multihop attempted */90#define EDOTDOT 111 /* RFS specific error */91#define EOVERFLOW 112 /* Value too large for defined data type */92#define ENOTUNIQ 113 /* Name not unique on network */93#define EBADFD 114 /* File descriptor in bad state */94#define EREMCHG 115 /* Remote address changed */9596#define EUCLEAN 117 /* Structure needs cleaning */97#define ENOTNAM 118 /* Not a XENIX named type file */98#define ENAVAIL 119 /* No XENIX semaphores available */99#define EISNAM 120 /* Is a named type file */100#define EREMOTEIO 121 /* Remote I/O error */101102#define ELIBACC 122 /* Can not access a needed shared library */103#define ELIBBAD 123 /* Accessing a corrupted shared library */104#define ELIBSCN 124 /* .lib section in a.out corrupted */105#define ELIBMAX 125 /* Attempting to link in too many shared libraries */106#define ELIBEXEC 126 /* Cannot exec a shared library directly */107#define ERESTART 127 /* Interrupted system call should be restarted */108#define ESTRPIPE 128 /* Streams pipe error */109110#define ENOMEDIUM 129 /* No medium found */111#define EMEDIUMTYPE 130 /* Wrong medium type */112#define ECANCELED 131 /* Operation Cancelled */113#define ENOKEY 132 /* Required key not available */114#define EKEYEXPIRED 133 /* Key has expired */115#define EKEYREVOKED 134 /* Key has been revoked */116#define EKEYREJECTED 135 /* Key was rejected by service */117118/* for robust mutexes */119#define EOWNERDEAD 136 /* Owner died */120#define ENOTRECOVERABLE 137 /* State not recoverable */121122#define ERFKILL 138 /* Operation not possible due to RF-kill */123124#define EHWPOISON 139 /* Memory page has hardware error */125126#endif127128129