Raymond Toy pushed to branch issue-386-generate-def-unix-error at cmucl / cmucl
Commits:
-
7eaf1fc7
by Raymond Toy at 2025-03-28T08:26:48-07:00
2 changed files:
Changes:
1 | +;; Ignoring dup of EOPNOTSUPP: old value ENOTSUP, new value 102
|
|
2 | +(def-unix-error EPERM 1)
|
|
3 | +(def-unix-error ENOENT 2)
|
|
4 | +(def-unix-error ESRCH 3)
|
|
5 | +(def-unix-error EINTR 4)
|
|
6 | +(def-unix-error EIO 5)
|
|
7 | +(def-unix-error ENXIO 6)
|
|
8 | +(def-unix-error E2BIG 7)
|
|
9 | +(def-unix-error ENOEXEC 8)
|
|
10 | +(def-unix-error EBADF 9)
|
|
11 | +(def-unix-error ECHILD 10)
|
|
12 | +(def-unix-error EDEADLK 11)
|
|
13 | +(def-unix-error ENOMEM 12)
|
|
14 | +(def-unix-error EACCES 13)
|
|
15 | +(def-unix-error EFAULT 14)
|
|
16 | +(def-unix-error ENOTBLK 15)
|
|
17 | +(def-unix-error EBUSY 16)
|
|
18 | +(def-unix-error EEXIST 17)
|
|
19 | +(def-unix-error EXDEV 18)
|
|
20 | +(def-unix-error ENODEV 19)
|
|
21 | +(def-unix-error ENOTDIR 20)
|
|
22 | +(def-unix-error EISDIR 21)
|
|
23 | +(def-unix-error EINVAL 22)
|
|
24 | +(def-unix-error ENFILE 23)
|
|
25 | +(def-unix-error EMFILE 24)
|
|
26 | +(def-unix-error ENOTTY 25)
|
|
27 | +(def-unix-error ETXTBSY 26)
|
|
28 | +(def-unix-error EFBIG 27)
|
|
29 | +(def-unix-error ENOSPC 28)
|
|
30 | +(def-unix-error ESPIPE 29)
|
|
31 | +(def-unix-error EROFS 30)
|
|
32 | +(def-unix-error EMLINK 31)
|
|
33 | +(def-unix-error EPIPE 32)
|
|
34 | +(def-unix-error EDOM 33)
|
|
35 | +(def-unix-error ERANGE 34)
|
|
36 | +(def-unix-error EAGAIN 35)
|
|
37 | +(def-unix-error EWOULDBLOCK EAGAIN)
|
|
38 | +(def-unix-error EINPROGRESS 36)
|
|
39 | +(def-unix-error EALREADY 37)
|
|
40 | +(def-unix-error ENOTSOCK 38)
|
|
41 | +(def-unix-error EDESTADDRREQ 39)
|
|
42 | +(def-unix-error EMSGSIZE 40)
|
|
43 | +(def-unix-error EPROTOTYPE 41)
|
|
44 | +(def-unix-error ENOPROTOOPT 42)
|
|
45 | +(def-unix-error EPROTONOSUPPORT 43)
|
|
46 | +(def-unix-error ESOCKTNOSUPPORT 44)
|
|
47 | +(def-unix-error ENOTSUP 45)
|
|
48 | +;; (def-unix-error EOPNOTSUPP ENOTSUP)
|
|
49 | +(def-unix-error EPFNOSUPPORT 46)
|
|
50 | +(def-unix-error EAFNOSUPPORT 47)
|
|
51 | +(def-unix-error EADDRINUSE 48)
|
|
52 | +(def-unix-error EADDRNOTAVAIL 49)
|
|
53 | +(def-unix-error ENETDOWN 50)
|
|
54 | +(def-unix-error ENETUNREACH 51)
|
|
55 | +(def-unix-error ENETRESET 52)
|
|
56 | +(def-unix-error ECONNABORTED 53)
|
|
57 | +(def-unix-error ECONNRESET 54)
|
|
58 | +(def-unix-error ENOBUFS 55)
|
|
59 | +(def-unix-error EISCONN 56)
|
|
60 | +(def-unix-error ENOTCONN 57)
|
|
61 | +(def-unix-error ESHUTDOWN 58)
|
|
62 | +(def-unix-error ETOOMANYREFS 59)
|
|
63 | +(def-unix-error ETIMEDOUT 60)
|
|
64 | +(def-unix-error ECONNREFUSED 61)
|
|
65 | +(def-unix-error ELOOP 62)
|
|
66 | +(def-unix-error ENAMETOOLONG 63)
|
|
67 | +(def-unix-error EHOSTDOWN 64)
|
|
68 | +(def-unix-error EHOSTUNREACH 65)
|
|
69 | +(def-unix-error ENOTEMPTY 66)
|
|
70 | +(def-unix-error EPROCLIM 67)
|
|
71 | +(def-unix-error EUSERS 68)
|
|
72 | +(def-unix-error EDQUOT 69)
|
|
73 | +(def-unix-error ESTALE 70)
|
|
74 | +(def-unix-error EREMOTE 71)
|
|
75 | +(def-unix-error EBADRPC 72)
|
|
76 | +(def-unix-error ERPCMISMATCH 73)
|
|
77 | +(def-unix-error EPROGUNAVAIL 74)
|
|
78 | +(def-unix-error EPROGMISMATCH 75)
|
|
79 | +(def-unix-error EPROCUNAVAIL 76)
|
|
80 | +(def-unix-error ENOLCK 77)
|
|
81 | +(def-unix-error ENOSYS 78)
|
|
82 | +(def-unix-error EFTYPE 79)
|
|
83 | +(def-unix-error EAUTH 80)
|
|
84 | +(def-unix-error ENEEDAUTH 81)
|
|
85 | +(def-unix-error EPWROFF 82)
|
|
86 | +(def-unix-error EDEVERR 83)
|
|
87 | +(def-unix-error EOVERFLOW 84)
|
|
88 | +(def-unix-error EBADEXEC 85)
|
|
89 | +(def-unix-error EBADARCH 86)
|
|
90 | +(def-unix-error ESHLIBVERS 87)
|
|
91 | +(def-unix-error EBADMACHO 88)
|
|
92 | +(def-unix-error ECANCELED 89)
|
|
93 | +(def-unix-error EIDRM 90)
|
|
94 | +(def-unix-error ENOMSG 91)
|
|
95 | +(def-unix-error EILSEQ 92)
|
|
96 | +(def-unix-error ENOATTR 93)
|
|
97 | +(def-unix-error EBADMSG 94)
|
|
98 | +(def-unix-error EMULTIHOP 95)
|
|
99 | +(def-unix-error ENODATA 96)
|
|
100 | +(def-unix-error ENOLINK 97)
|
|
101 | +(def-unix-error ENOSR 98)
|
|
102 | +(def-unix-error ENOSTR 99)
|
|
103 | +(def-unix-error EPROTO 100)
|
|
104 | +(def-unix-error ETIME 101)
|
|
105 | +(def-unix-error EOPNOTSUPP 102)
|
|
106 | +(def-unix-error ENOPOLICY 103)
|
|
107 | +(def-unix-error ENOTRECOVERABLE 104)
|
|
108 | +(def-unix-error EOWNERDEAD 105)
|
|
109 | +(def-unix-error EQFULL 106)
|
|
110 | +(def-unix-error ELAST 106) |
1 | +(def-unix-error EPERM 1)
|
|
2 | +(def-unix-error ENOENT 2)
|
|
3 | +(def-unix-error ESRCH 3)
|
|
4 | +(def-unix-error EINTR 4)
|
|
5 | +(def-unix-error EIO 5)
|
|
6 | +(def-unix-error ENXIO 6)
|
|
7 | +(def-unix-error E2BIG 7)
|
|
8 | +(def-unix-error ENOEXEC 8)
|
|
9 | +(def-unix-error EBADF 9)
|
|
10 | +(def-unix-error ECHILD 10)
|
|
11 | +(def-unix-error EAGAIN 11)
|
|
12 | +(def-unix-error ENOMEM 12)
|
|
13 | +(def-unix-error EACCES 13)
|
|
14 | +(def-unix-error EFAULT 14)
|
|
15 | +(def-unix-error ENOTBLK 15)
|
|
16 | +(def-unix-error EBUSY 16)
|
|
17 | +(def-unix-error EEXIST 17)
|
|
18 | +(def-unix-error EXDEV 18)
|
|
19 | +(def-unix-error ENODEV 19)
|
|
20 | +(def-unix-error ENOTDIR 20)
|
|
21 | +(def-unix-error EISDIR 21)
|
|
22 | +(def-unix-error EINVAL 22)
|
|
23 | +(def-unix-error ENFILE 23)
|
|
24 | +(def-unix-error EMFILE 24)
|
|
25 | +(def-unix-error ENOTTY 25)
|
|
26 | +(def-unix-error ETXTBSY 26)
|
|
27 | +(def-unix-error EFBIG 27)
|
|
28 | +(def-unix-error ENOSPC 28)
|
|
29 | +(def-unix-error ESPIPE 29)
|
|
30 | +(def-unix-error EROFS 30)
|
|
31 | +(def-unix-error EMLINK 31)
|
|
32 | +(def-unix-error EPIPE 32)
|
|
33 | +(def-unix-error EDOM 33)
|
|
34 | +(def-unix-error ERANGE 34)
|
|
35 | +(def-unix-error ENOMSG 35)
|
|
36 | +(def-unix-error EIDRM 36)
|
|
37 | +(def-unix-error ECHRNG 37)
|
|
38 | +(def-unix-error EL2NSYNC 38)
|
|
39 | +(def-unix-error EL3HLT 39)
|
|
40 | +(def-unix-error EL3RST 40)
|
|
41 | +(def-unix-error ELNRNG 41)
|
|
42 | +(def-unix-error EUNATCH 42)
|
|
43 | +(def-unix-error ENOCSI 43)
|
|
44 | +(def-unix-error EL2HLT 44)
|
|
45 | +(def-unix-error EDEADLK 45)
|
|
46 | +(def-unix-error ENOLCK 46)
|
|
47 | +(def-unix-error ECANCELED 47)
|
|
48 | +(def-unix-error ENOTSUP 48)
|
|
49 | +(def-unix-error EDQUOT 49)
|
|
50 | +(def-unix-error EBADE 50)
|
|
51 | +(def-unix-error EBADR 51)
|
|
52 | +(def-unix-error EXFULL 52)
|
|
53 | +(def-unix-error ENOANO 53)
|
|
54 | +(def-unix-error EBADRQC 54)
|
|
55 | +(def-unix-error EBADSLT 55)
|
|
56 | +(def-unix-error EDEADLOCK 56)
|
|
57 | +(def-unix-error EBFONT 57)
|
|
58 | +(def-unix-error EOWNERDEAD 58)
|
|
59 | +(def-unix-error ENOTRECOVERABLE 59)
|
|
60 | +(def-unix-error ENOSTR 60)
|
|
61 | +(def-unix-error ENODATA 61)
|
|
62 | +(def-unix-error ETIME 62)
|
|
63 | +(def-unix-error ENOSR 63)
|
|
64 | +(def-unix-error ENONET 64)
|
|
65 | +(def-unix-error ENOPKG 65)
|
|
66 | +(def-unix-error EREMOTE 66)
|
|
67 | +(def-unix-error ENOLINK 67)
|
|
68 | +(def-unix-error EADV 68)
|
|
69 | +(def-unix-error ESRMNT 69)
|
|
70 | +(def-unix-error ECOMM 70)
|
|
71 | +(def-unix-error EPROTO 71)
|
|
72 | +(def-unix-error ELOCKUNMAPPED 72)
|
|
73 | +(def-unix-error ENOTACTIVE 73)
|
|
74 | +(def-unix-error EMULTIHOP 74)
|
|
75 | +(def-unix-error EADI 75)
|
|
76 | +(def-unix-error EBADMSG 77)
|
|
77 | +(def-unix-error ENAMETOOLONG 78)
|
|
78 | +(def-unix-error EOVERFLOW 79)
|
|
79 | +(def-unix-error ENOTUNIQ 80)
|
|
80 | +(def-unix-error EBADFD 81)
|
|
81 | +(def-unix-error EREMCHG 82)
|
|
82 | +(def-unix-error ELIBACC 83)
|
|
83 | +(def-unix-error ELIBBAD 84)
|
|
84 | +(def-unix-error ELIBSCN 85)
|
|
85 | +(def-unix-error ELIBMAX 86)
|
|
86 | +(def-unix-error ELIBEXEC 87)
|
|
87 | +(def-unix-error EILSEQ 88)
|
|
88 | +(def-unix-error ENOSYS 89)
|
|
89 | +(def-unix-error ELOOP 90)
|
|
90 | +(def-unix-error ERESTART 91)
|
|
91 | +(def-unix-error ESTRPIPE 92)
|
|
92 | +(def-unix-error ENOTEMPTY 93)
|
|
93 | +(def-unix-error EUSERS 94)
|
|
94 | +(def-unix-error ENOTSOCK 95)
|
|
95 | +(def-unix-error EDESTADDRREQ 96)
|
|
96 | +(def-unix-error EMSGSIZE 97)
|
|
97 | +(def-unix-error EPROTOTYPE 98)
|
|
98 | +(def-unix-error ENOPROTOOPT 99)
|
|
99 | +(def-unix-error EPROTONOSUPPORT 120)
|
|
100 | +(def-unix-error ESOCKTNOSUPPORT 121)
|
|
101 | +(def-unix-error EOPNOTSUPP 122)
|
|
102 | +(def-unix-error EPFNOSUPPORT 123)
|
|
103 | +(def-unix-error EAFNOSUPPORT 124)
|
|
104 | +(def-unix-error EADDRINUSE 125)
|
|
105 | +(def-unix-error EADDRNOTAVAIL 126)
|
|
106 | +(def-unix-error ENETDOWN 127)
|
|
107 | +(def-unix-error ENETUNREACH 128)
|
|
108 | +(def-unix-error ENETRESET 129)
|
|
109 | +(def-unix-error ECONNABORTED 130)
|
|
110 | +(def-unix-error ECONNRESET 131)
|
|
111 | +(def-unix-error ENOBUFS 132)
|
|
112 | +(def-unix-error EISCONN 133)
|
|
113 | +(def-unix-error ENOTCONN 134)
|
|
114 | +(def-unix-error ESHUTDOWN 143)
|
|
115 | +(def-unix-error ETOOMANYREFS 144)
|
|
116 | +(def-unix-error ETIMEDOUT 145)
|
|
117 | +(def-unix-error ECONNREFUSED 146)
|
|
118 | +(def-unix-error EHOSTDOWN 147)
|
|
119 | +(def-unix-error EHOSTUNREACH 148)
|
|
120 | +(def-unix-error EWOULDBLOCK EAGAIN)
|
|
121 | +(def-unix-error EALREADY 149)
|
|
122 | +(def-unix-error EINPROGRESS 150)
|
|
123 | +(def-unix-error ESTALE 151) |