source: CIVL/include/headers/errno.h@ 1aaefd4

main test-branch
Last change on this file since 1aaefd4 was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/* The errno.h header defines several macros, all relating to the
2 * reporting of error conditions.
3 */
4
5#ifndef _ERRNO_
6#define _ERRNO_
7
8#define errno 0
9#define E2BIG 1
10#define EACCES 2
11#define EADDRINUSE 3
12#define EADDRNOTAVAIL 4
13#define EAFNOSUPPORT 5
14#define EAGAIN 6
15#define EALREADY 7
16#define EBADF 8
17#define EBADMSG 9
18#define EBUSY 10
19#define ECANCELED 11
20#define ECHILD 12
21#define ECONNABORTED 13
22#define ECONNREFUSED 14
23#define ECONNRESET 15
24#define EDEADLK 16
25#define EDESTADDRREQ 17
26#define EDOM 18
27#define EDQUOT 19
28#define EEXIST 20
29#define EFAULT 21
30#define EFBIG 22
31#define EHOSTUNREACH 23
32#define EIDRM 24
33#define EILSEQ 25
34#define EINPROGRESS 26
35#define EINTR 27
36#define EINVAL 28
37#define EIO 29
38#define EISCONN 30
39#define EISDIR 31
40#define ELOOP 32
41#define EMFILE 33
42#define EMLINK 34
43#define EMSGSIZE 35
44#define EMULTIHOP 36
45#define ENAMETOOLONG 37
46#define ENETDOWN 38
47#define ENETRESET 39
48#define ENETUNREACH 40
49#define ENFILE 41
50#define ENOBUFS 42
51#define ENODATA 43
52#define ENODEV 44
53#define ENOENT 45
54#define ENOEXEC 46
55#define ENOLCK 47
56#define ENOLINK 48
57#define ENOMEM 49
58#define ENOMSG 50
59#define ENOPROTOOPT 51
60#define ENOSPC 52
61#define ENOSR 53
62#define ENOSTR 54
63#define ENOSYS 55
64#define ENOTCONN 56
65#define ENOTDIR 57
66#define ENOTEMPTY 58
67#define ENOTRECOVERABLE 59
68#define ENOTSOCK 60
69#define ENOTSUP 61
70#define ENOTTY 62
71#define ENXIO 63
72#define EOPNOTSUPP 64
73#define EOVERFLOW 65
74#define EOWNERDEAD 66
75#define EPERM 67
76#define EPIPE 68
77#define EPROTO 69
78#define EPROTONOSUPPORT 70
79#define EPROTOTYPE 71
80#define ERANGE 72
81#define EROFS 73
82#define ESPIPE 74
83#define ESRCH 75
84#define ESTALE 76
85#define ETIME 77
86#define ETIMEDOUT 78
87#define ETXTBSY 79
88#define EWOULDBLOCK 80
89#define EXDEV 81
90
91#endif
Note: See TracBrowser for help on using the repository browser.