OpenCores
URL https://opencores.org/ocsvn/c0or1k/c0or1k/trunk

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [posix/] [libposix/] [include/] [posix/] [bits/] [errno_values.h] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 drasko
#ifndef _BITS_ERRNO_VALUES_H
2
#define _BITS_ERRNO_VALUES_H
3
 
4
/* Most architectures use these errno values (i.e.  arm cris
5
 * i386 ia64 m68k parisc ppc ppc64 s390 s390x sh x86_64, etc)
6
 *
7
 * A few arches do their own wierd thing, specifically alpha,
8
 * mips, and sparc.
9
 *
10
 */
11
 
12
#define EPERM            1      /* Operation not permitted */
13
#define ENOENT           2      /* No such file or directory */
14
#define ESRCH            3      /* No such process */
15
#define EINTR            4      /* Interrupted system call */
16
#define EIO              5      /* I/O error */
17
#define ENXIO            6      /* No such device or address */
18
#define E2BIG            7      /* Argument list too long */
19
#define ENOEXEC          8      /* Exec format error */
20
#define EBADF            9      /* Bad file number */
21
#define ECHILD          10      /* No child processes */
22
#define EAGAIN          11      /* Try again */
23
#define ENOMEM          12      /* Out of memory */
24
#define EACCES          13      /* Permission denied */
25
#define EFAULT          14      /* Bad address */
26
#define ENOTBLK         15      /* Block device required */
27
#define EBUSY           16      /* Device or resource busy */
28
#define EEXIST          17      /* File exists */
29
#define EXDEV           18      /* Cross-device link */
30
#define ENODEV          19      /* No such device */
31
#define ENOTDIR         20      /* Not a directory */
32
#define EISDIR          21      /* Is a directory */
33
#define EINVAL          22      /* Invalid argument */
34
#define ENFILE          23      /* File table overflow */
35
#define EMFILE          24      /* Too many open files */
36
#define ENOTTY          25      /* Not a typewriter */
37
#define ETXTBSY         26      /* Text file busy */
38
#define EFBIG           27      /* File too large */
39
#define ENOSPC          28      /* No space left on device */
40
#define ESPIPE          29      /* Illegal seek */
41
#define EROFS           30      /* Read-only file system */
42
#define EMLINK          31      /* Too many links */
43
#define EPIPE           32      /* Broken pipe */
44
#define EDOM            33      /* Math argument out of domain of func */
45
#define ERANGE          34      /* Math result not representable */
46
#define EDEADLK         35      /* Resource deadlock would occur */
47
#define ENAMETOOLONG    36      /* File name too long */
48
#define ENOLCK          37      /* No record locks available */
49
#define ENOSYS          38      /* Function not implemented */
50
#define ENOTEMPTY       39      /* Directory not empty */
51
#define ELOOP           40      /* Too many symbolic links encountered */
52
#define EWOULDBLOCK     EAGAIN  /* Operation would block */
53
#define ENOMSG          42      /* No message of desired type */
54
#define EIDRM           43      /* Identifier removed */
55
#define ECHRNG          44      /* Channel number out of range */
56
#define EL2NSYNC        45      /* Level 2 not synchronized */
57
#define EL3HLT          46      /* Level 3 halted */
58
#define EL3RST          47      /* Level 3 reset */
59
#define ELNRNG          48      /* Link number out of range */
60
#define EUNATCH         49      /* Protocol driver not attached */
61
#define ENOCSI          50      /* No CSI structure available */
62
#define EL2HLT          51      /* Level 2 halted */
63
#define EBADE           52      /* Invalid exchange */
64
#define EBADR           53      /* Invalid request descriptor */
65
#define EXFULL          54      /* Exchange full */
66
#define ENOANO          55      /* No anode */
67
#define EBADRQC         56      /* Invalid request code */
68
#define EBADSLT         57      /* Invalid slot */
69
#define EDEADLOCK       EDEADLK
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
#define ENOMEDIUM       123     /* No medium found */
135
#define EMEDIUMTYPE     124     /* Wrong medium type */
136
 
137
#endif /* _BITS_ERRNO_VALUES_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.