]> git.proxmox.com Git - mirror_edk2.git/blob - StdLib/Include/errno.h
Add Socket Libraries.
[mirror_edk2.git] / StdLib / Include / errno.h
1 /** @file
2 The header <errno.h> defines several values, all relating to the reporting of
3 error conditions.
4
5 The enum members expand to integral constant expressions
6 with distinct nonzero values, suitable for use in #if preprocessing
7 directives; and errno which expands to a modifiable lvalue that has type int,
8 the value of which is set to a positive error number by several library
9 functions.
10
11 The value of errno is zero at program startup, but is never set to zero by
12 any library function. The value of errno may be set to a non-zero value by
13 a library function call whether or not there is an error, provided the use
14 of errno is not is not documented in the description of the function in
15 the governing standard: ISO/IEC 9899:1990 with Amendment 1 or ISO/IEC 9899:1999.
16
17 Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
18 This program and the accompanying materials are licensed and made available under
19 the terms and conditions of the BSD License that accompanies this distribution.
20 The full text of the license may be found at
21 http://opensource.org/licenses/bsd-license.php.
22
23 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
24 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
25
26 **/
27 #ifndef _ERRNO_H
28 #define _ERRNO_H
29 #include <sys/EfiCdefs.h>
30 #include <sys/errno.h>
31
32 extern int errno;
33 extern RETURN_STATUS EFIerrno;
34
35 // Define error number in terms of the ENUM in <sys/errno.h>
36
37 #define ERESTART -1 /* restart syscall */
38
39 #define EMINERRORVAL __EMINERRORVAL /* The lowest valid error value */
40
41 #define EPERM __EPERM /* 1 Operation not permitted */
42 #define ENOENT __ENOENT /* 2 No such file or directory */
43 #define ESRCH __ESRCH /* 3 No such process */
44 #define EINTR __EINTR /* 4 Interrupted system call */
45 #define EIO __EIO /* 5 Input/output error */
46 #define ENXIO __ENXIO /* 6 Device not configured */
47 #define E2BIG __E2BIG /* 7 Argument list too long */
48 #define ENOEXEC __ENOEXEC /* 8 Exec format error */
49 #define EBADF __EBADF /* 9 Bad file descriptor */
50 #define ECHILD __ECHILD /* 10 No child processes */
51 #define EDEADLK __EDEADLK /* 11 Resource deadlock avoided */
52 #define ENOMEM __ENOMEM /* 12 Cannot allocate memory */
53 #define EACCES __EACCES /* 13 Permission denied */
54 #define EFAULT __EFAULT /* 14 Bad address */
55 #define ENOTBLK __ENOTBLK /* 15 Block device required */
56 #define EBUSY __EBUSY /* 16 Device busy */
57 #define EEXIST __EEXIST /* 17 File exists */
58 #define EXDEV __EXDEV /* 18 Cross-device link */
59 #define ENODEV __ENODEV /* 19 Operation not supported by device */
60 #define ENOTDIR __ENOTDIR /* 20 Not a directory */
61 #define EISDIR __EISDIR /* 21 Is a directory */
62 #define EINVAL __EINVAL /* 22 Invalid argument */
63 #define ENFILE __ENFILE /* 23 Too many open files in system */
64 #define EMFILE __EMFILE /* 24 Too many open file descriptors */
65 #define ENOTTY __ENOTTY /* 25 Inappropriate ioctl for device */
66 #define ETXTBSY __ETXTBSY /* 26 Text file busy */
67 #define EFBIG __EFBIG /* 27 File too large */
68 #define ENOSPC __ENOSPC /* 28 No space left on device */
69 #define ESPIPE __ESPIPE /* 29 Illegal seek */
70 #define EROFS __EROFS /* 30 Read-only filesystem */
71 #define EMLINK __EMLINK /* 31 Too many links */
72 #define EPIPE __EPIPE /* 32 Broken pipe */
73
74 /* math software -- these are the only two values required by the C Standard */
75 #define EDOM __EDOM /* 33 Numerical argument out of domain */
76 #define ERANGE __ERANGE /* 34 Result too large */
77
78 /* non-blocking and interrupt i/o */
79 #define EAGAIN __EAGAIN /* 35 Resource temporarily unavailable */
80 #define EWOULDBLOCK __EWOULDBLOCK /* 35 Operation would block */
81 #define EINPROGRESS __EINPROGRESS /* 36 Operation now in progress */
82 #define EALREADY __EALREADY /* 37 Operation already in progress */
83
84 /* ipc/network software -- argument errors */
85 #define ENOTSOCK __ENOTSOCK /* 38 Socket operation on non-socket */
86 #define EDESTADDRREQ __EDESTADDRREQ /* 39 Destination address required */
87 #define EMSGSIZE __EMSGSIZE /* 40 Message too long */
88 #define EPROTOTYPE __EPROTOTYPE /* 41 Protocol wrong type for socket */
89 #define ENOPROTOOPT __ENOPROTOOPT /* 42 Protocol not available */
90 #define EPROTONOSUPPORT __EPROTONOSUPPORT /* 43 Protocol not supported */
91 #define ESOCKTNOSUPPORT __ESOCKTNOSUPPORT /* 44 Socket type not supported */
92 #define EOPNOTSUPP __EOPNOTSUPP /* 45 Operation not supported */
93 #define ENOTSUP __ENOTSUP /* 45 Operation not supported */
94 #define EPFNOSUPPORT __EPFNOSUPPORT /* 46 Protocol family not supported */
95 #define EAFNOSUPPORT __EAFNOSUPPORT /* 47 Address family not supported by protocol family */
96 #define EADDRINUSE __EADDRINUSE /* 48 Address already in use */
97 #define EADDRNOTAVAIL __EADDRNOTAVAIL /* 49 Can't assign requested address */
98
99 /* ipc/network software -- operational errors */
100 #define ENETDOWN __ENETDOWN /* 50 Network is down */
101 #define ENETUNREACH __ENETUNREACH /* 51 Network is unreachable */
102 #define ENETRESET __ENETRESET /* 52 Network dropped connection on reset */
103 #define ECONNABORTED __ECONNABORTED /* 53 Software caused connection abort */
104 #define ECONNRESET __ECONNRESET /* 54 Connection reset by peer */
105 #define ENOBUFS __ENOBUFS /* 55 No buffer space available */
106 #define EISCONN __EISCONN /* 56 Socket is already connected */
107 #define ENOTCONN __ENOTCONN /* 57 Socket is not connected */
108 #define ESHUTDOWN __ESHUTDOWN /* 58 Can't send after socket shutdown */
109 #define ETOOMANYREFS __ETOOMANYREFS /* 59 Too many references: can't splice */
110 #define ETIMEDOUT __ETIMEDOUT /* 60 Operation timed out */
111 #define ECONNREFUSED __ECONNREFUSED /* 61 Connection refused */
112 #define ELOOP __ELOOP /* 62 Too many levels of symbolic links */
113 #define ENAMETOOLONG __ENAMETOOLONG /* 63 File name too long */
114 #define EHOSTDOWN __EHOSTDOWN /* 64 Host is down */
115 #define EHOSTUNREACH __EHOSTUNREACH /* 65 No route to host */
116
117 #define ENOTEMPTY __ENOTEMPTY /* 66 Directory not empty */
118
119 /* quotas, etc. */
120 #define EPROCLIM __EPROCLIM /* 67 Too many processes */
121 #define EUSERS __EUSERS /* 68 Too many users */
122 #define EDQUOT __EDQUOT /* 69 Disc quota exceeded */
123
124 /* Network File System */
125 #define ESTALE __ESTALE /* 70 Stale NFS file handle */
126 #define EREMOTE __EREMOTE /* 71 Too many levels of remote in path */
127 #define EBADRPC __EBADRPC /* 72 RPC struct is bad */
128 #define ERPCMISMATCH __ERPCMISMATCH /* 73 RPC version wrong */
129 #define EPROGUNAVAIL __EPROGUNAVAIL /* 74 RPC prog. not avail */
130 #define EPROGMISMATCH __EPROGMISMATCH /* 75 Program version wrong */
131 #define EPROCUNAVAIL __EPROCUNAVAIL /* 76 Bad procedure for program */
132 #define ENOLCK __ENOLCK /* 77 No locks available */
133 #define ENOSYS __ENOSYS /* 78 Function not implemented */
134 #define EFTYPE __EFTYPE /* 79 Inappropriate file type or format */
135 #define EAUTH __EAUTH /* 80 Authentication error */
136 #define ENEEDAUTH __ENEEDAUTH /* 81 Need authenticator */
137 #define EIDRM __EIDRM /* 82 Identifier removed */
138 #define ENOMSG __ENOMSG /* 83 No message of desired type */
139 #define EOVERFLOW __EOVERFLOW /* 84 Value too large to be stored in data type */
140 #define EILSEQ __EILSEQ /* 85 Illegal byte sequence */
141 #define ENOTHING_1 __ENOTHING_1 /* 86 Place Holder */
142 #define ECANCELED __ECANCELED /* 87 Operation canceled */
143
144 #define EBADMSG __EBADMSG /* 88 Bad message */
145 #define ENODATA __ENODATA /* 89 No message available */
146 #define ENOSR __ENOSR /* 90 No STREAM resources */
147 #define ENOSTR __ENOSTR /* 91 Not a STREAM */
148 #define ETIME __ETIME /* 92 STREAM ioctl timeout */
149
150 #define ENOATTR __ENOATTR /* 93 Attribute not found */
151
152 #define EDOOFUS __EDOOFUS /* 94 Programming error */
153
154 #define EMULTIHOP __EMULTIHOP /* 95 Multihop attempted */
155 #define ENOLINK __ENOLINK /* 96 Link has been severed */
156 #define EPROTO __EPROTO /* 97 Protocol error */
157
158 #define EBUFSIZE __EBUFSIZE /* 98 Buffer too small to hold result */
159
160 #define EMAXERRORVAL __EMAXERRORVAL /* One more than the highest defined error value. */
161
162 #endif /* _ERRNO_H */