]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re-core/uclibc/lib/uclibc/ARCH-x86/include/asm/errno.h
Update
[l4.git] / l4 / pkg / l4re-core / uclibc / lib / uclibc / ARCH-x86 / include / asm / errno.h
1 #ifndef _ASM_GENERIC_ERRNO_H
2 #define _ASM_GENERIC_ERRNO_H
3
4
5 #ifndef _ASM_GENERIC_ERRNO_BASE_H
6 #define _ASM_GENERIC_ERRNO_BASE_H
7
8 #define EPERM            1      /* Operation not permitted */
9 #define ENOENT           2      /* No such file or directory */
10 #define ESRCH            3      /* No such process */
11 #define EINTR            4      /* Interrupted system call */
12 #define EIO              5      /* I/O error */
13 #define ENXIO            6      /* No such device or address */
14 #define E2BIG            7      /* Argument list too long */
15 #define ENOEXEC          8      /* Exec format error */
16 #define EBADF            9      /* Bad file number */
17 #define ECHILD          10      /* No child processes */
18 #define EAGAIN          11      /* Try again */
19 #define ENOMEM          12      /* Out of memory */
20 #define EACCES          13      /* Permission denied */
21 #define EFAULT          14      /* Bad address */
22 #define ENOTBLK         15      /* Block device required */
23 #define EBUSY           16      /* Device or resource busy */
24 #define EEXIST          17      /* File exists */
25 #define EXDEV           18      /* Cross-device link */
26 #define ENODEV          19      /* No such device */
27 #define ENOTDIR         20      /* Not a directory */
28 #define EISDIR          21      /* Is a directory */
29 #define EINVAL          22      /* Invalid argument */
30 #define ENFILE          23      /* File table overflow */
31 #define EMFILE          24      /* Too many open files */
32 #define ENOTTY          25      /* Not a typewriter */
33 #define ETXTBSY         26      /* Text file busy */
34 #define EFBIG           27      /* File too large */
35 #define ENOSPC          28      /* No space left on device */
36 #define ESPIPE          29      /* Illegal seek */
37 #define EROFS           30      /* Read-only file system */
38 #define EMLINK          31      /* Too many links */
39 #define EPIPE           32      /* Broken pipe */
40 #define EDOM            33      /* Math argument out of domain of func */
41 #define ERANGE          34      /* Math result not representable */
42
43 #endif
44 #define EDEADLK         35      /* Resource deadlock would occur */
45 #define ENAMETOOLONG    36      /* File name too long */
46 #define ENOLCK          37      /* No record locks available */
47 #define ENOSYS          38      /* Function not implemented */
48 #define ENOTEMPTY       39      /* Directory not empty */
49 #define ELOOP           40      /* Too many symbolic links encountered */
50 #define EWOULDBLOCK     EAGAIN  /* Operation would block */
51 #define ENOMSG          42      /* No message of desired type */
52 #define EIDRM           43      /* Identifier removed */
53 #define ECHRNG          44      /* Channel number out of range */
54 #define EL2NSYNC        45      /* Level 2 not synchronized */
55 #define EL3HLT          46      /* Level 3 halted */
56 #define EL3RST          47      /* Level 3 reset */
57 #define ELNRNG          48      /* Link number out of range */
58 #define EUNATCH         49      /* Protocol driver not attached */
59 #define ENOCSI          50      /* No CSI structure available */
60 #define EL2HLT          51      /* Level 2 halted */
61 #define EBADE           52      /* Invalid exchange */
62 #define EBADR           53      /* Invalid request descriptor */
63 #define EXFULL          54      /* Exchange full */
64 #define ENOANO          55      /* No anode */
65 #define EBADRQC         56      /* Invalid request code */
66 #define EBADSLT         57      /* Invalid slot */
67
68 #define EDEADLOCK       EDEADLK
69
70 #define EBFONT          59      /* Bad font file format */
71 #define ENOSTR          60      /* Device not a stream */
72 #define ENODATA         61      /* No data available */
73 #define ETIME           62      /* Timer expired */
74 #define ENOSR           63      /* Out of streams resources */
75 #define ENONET          64      /* Machine is not on the network */
76 #define ENOPKG          65      /* Package not installed */
77 #define EREMOTE         66      /* Object is remote */
78 #define ENOLINK         67      /* Link has been severed */
79 #define EADV            68      /* Advertise error */
80 #define ESRMNT          69      /* Srmount error */
81 #define ECOMM           70      /* Communication error on send */
82 #define EPROTO          71      /* Protocol error */
83 #define EMULTIHOP       72      /* Multihop attempted */
84 #define EDOTDOT         73      /* RFS specific error */
85 #define EBADMSG         74      /* Not a data message */
86 #define EOVERFLOW       75      /* Value too large for defined data type */
87 #define ENOTUNIQ        76      /* Name not unique on network */
88 #define EBADFD          77      /* File descriptor in bad state */
89 #define EREMCHG         78      /* Remote address changed */
90 #define ELIBACC         79      /* Can not access a needed shared library */
91 #define ELIBBAD         80      /* Accessing a corrupted shared library */
92 #define ELIBSCN         81      /* .lib section in a.out corrupted */
93 #define ELIBMAX         82      /* Attempting to link in too many shared libraries */
94 #define ELIBEXEC        83      /* Cannot exec a shared library directly */
95 #define EILSEQ          84      /* Illegal byte sequence */
96 #define ERESTART        85      /* Interrupted system call should be restarted */
97 #define ESTRPIPE        86      /* Streams pipe error */
98 #define EUSERS          87      /* Too many users */
99 #define ENOTSOCK        88      /* Socket operation on non-socket */
100 #define EDESTADDRREQ    89      /* Destination address required */
101 #define EMSGSIZE        90      /* Message too long */
102 #define EPROTOTYPE      91      /* Protocol wrong type for socket */
103 #define ENOPROTOOPT     92      /* Protocol not available */
104 #define EPROTONOSUPPORT 93      /* Protocol not supported */
105 #define ESOCKTNOSUPPORT 94      /* Socket type not supported */
106 #define EOPNOTSUPP      95      /* Operation not supported on transport endpoint */
107 #define EPFNOSUPPORT    96      /* Protocol family not supported */
108 #define EAFNOSUPPORT    97      /* Address family not supported by protocol */
109 #define EADDRINUSE      98      /* Address already in use */
110 #define EADDRNOTAVAIL   99      /* Cannot assign requested address */
111 #define ENETDOWN        100     /* Network is down */
112 #define ENETUNREACH     101     /* Network is unreachable */
113 #define ENETRESET       102     /* Network dropped connection because of reset */
114 #define ECONNABORTED    103     /* Software caused connection abort */
115 #define ECONNRESET      104     /* Connection reset by peer */
116 #define ENOBUFS         105     /* No buffer space available */
117 #define EISCONN         106     /* Transport endpoint is already connected */
118 #define ENOTCONN        107     /* Transport endpoint is not connected */
119 #define ESHUTDOWN       108     /* Cannot send after transport endpoint shutdown */
120 #define ETOOMANYREFS    109     /* Too many references: cannot splice */
121 #define ETIMEDOUT       110     /* Connection timed out */
122 #define ECONNREFUSED    111     /* Connection refused */
123 #define EHOSTDOWN       112     /* Host is down */
124 #define EHOSTUNREACH    113     /* No route to host */
125 #define EALREADY        114     /* Operation already in progress */
126 #define EINPROGRESS     115     /* Operation now in progress */
127 #define ESTALE          116     /* Stale NFS file handle */
128 #define EUCLEAN         117     /* Structure needs cleaning */
129 #define ENOTNAM         118     /* Not a XENIX named type file */
130 #define ENAVAIL         119     /* No XENIX semaphores available */
131 #define EISNAM          120     /* Is a named type file */
132 #define EREMOTEIO       121     /* Remote I/O error */
133 #define EDQUOT          122     /* Quota exceeded */
134
135 #define ENOMEDIUM       123     /* No medium found */
136 #define EMEDIUMTYPE     124     /* Wrong medium type */
137 #define ECANCELED       125     /* Operation Canceled */
138 #define ENOKEY          126     /* Required key not available */
139 #define EKEYEXPIRED     127     /* Key has expired */
140 #define EKEYREVOKED     128     /* Key has been revoked */
141 #define EKEYREJECTED    129     /* Key was rejected by service */
142
143 /* for robust mutexes */
144 #define EOWNERDEAD      130     /* Owner died */
145 #define ENOTRECOVERABLE 131     /* State not recoverable */
146
147 #endif