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