Source file posix_errno_constants.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
module Def (S : Cstubs.Types.TYPE) = struct
let e_2big = S.constant "E2BIG" S.int
let e_acces = S.constant "EACCES" S.int
let e_badf = S.constant "EBADF" S.int
let e_busy = S.constant "EBUSY" S.int
let e_child = S.constant "ECHILD" S.int
let e_dom = S.constant "EDOM" S.int
let e_exist = S.constant "EEXIST" S.int
let e_fault = S.constant "EFAULT" S.int
let e_fbig = S.constant "EFBIG" S.int
let e_intr = S.constant "EINTR" S.int
let e_inval = S.constant "EINVAL" S.int
let e_io = S.constant "EIO" S.int
let e_isdir = S.constant "EISDIR" S.int
let e_mfile = S.constant "EMFILE" S.int
let e_mlink = S.constant "EMLINK" S.int
let e_nfile = S.constant "ENFILE" S.int
let e_nodev = S.constant "ENODEV" S.int
let e_noent = S.constant "ENOENT" S.int
let e_noexec = S.constant "ENOEXEC" S.int
let e_nomem = S.constant "ENOMEM" S.int
let e_nospc = S.constant "ENOSPC" S.int
let e_notdir = S.constant "ENOTDIR" S.int
let e_notty = S.constant "ENOTTY" S.int
let e_nxio = S.constant "ENXIO" S.int
let e_perm = S.constant "EPERM" S.int
let e_pipe = S.constant "EPIPE" S.int
let e_range = S.constant "ERANGE" S.int
let e_rofs = S.constant "EROFS" S.int
let e_spipe = S.constant "ESPIPE" S.int
let e_srch = S.constant "ESRCH" S.int
let e_xdev = S.constant "EXDEV" S.int
let e_notblk = S.constant "ENOTBLK" S.int
let e_txtbsy = S.constant "ETXTBSY" S.int
let e_addrinuse = S.constant "EADDRINUSE" S.int
let e_addrnotavail = S.constant "EADDRNOTAVAIL" S.int
let e_afnosupport = S.constant "EAFNOSUPPORT" S.int
let e_again = S.constant "EAGAIN" S.int
let e_already = S.constant "EALREADY" S.int
let e_badmsg = S.constant "EBADMSG" S.int
let e_canceled = S.constant "ECANCELED" S.int
let e_connaborted = S.constant "ECONNABORTED" S.int
let e_connrefused = S.constant "ECONNREFUSED" S.int
let e_connreset = S.constant "ECONNRESET" S.int
let e_deadlk = S.constant "EDEADLK" S.int
let e_destaddrreq = S.constant "EDESTADDRREQ" S.int
let e_dquot = S.constant "EDQUOT" S.int
let e_hostdown = S.constant "EHOSTDOWN" S.int
let e_hostunreach = S.constant "EHOSTUNREACH" S.int
let e_idrm = S.constant "EIDRM" S.int
let e_ilseq = S.constant "EILSEQ" S.int
let e_inprogress = S.constant "EINPROGRESS" S.int
let e_isconn = S.constant "EISCONN" S.int
let e_loop = S.constant "ELOOP" S.int
let e_msgsize = S.constant "EMSGSIZE" S.int
let e_multihop = S.constant "EMULTIHOP" S.int
let e_nametoolong = S.constant "ENAMETOOLONG" S.int
let e_netdown = S.constant "ENETDOWN" S.int
let e_netreset = S.constant "ENETRESET" S.int
let e_netunreach = S.constant "ENETUNREACH" S.int
let e_nobufs = S.constant "ENOBUFS" S.int
let e_nodata = S.constant "ENODATA" S.int
let e_nolck = S.constant "ENOLCK" S.int
let e_nolink = S.constant "ENOLINK" S.int
let e_nomsg = S.constant "ENOMSG" S.int
let e_noprotoopt = S.constant "ENOPROTOOPT" S.int
let e_nosr = S.constant "ENOSR" S.int
let e_nostr = S.constant "ENOSTR" S.int
let e_nosys = S.constant "ENOSYS" S.int
let e_notconn = S.constant "ENOTCONN" S.int
let e_notempty = S.constant "ENOTEMPTY" S.int
let e_notrecoverable = S.constant "ENOTRECOVERABLE" S.int
let e_notsock = S.constant "ENOTSOCK" S.int
let e_notsup = S.constant "ENOTSUP" S.int
let e_opnotsupp = S.constant "EOPNOTSUPP" S.int
let e_overflow = S.constant "EOVERFLOW" S.int
let e_ownerdead = S.constant "EOWNERDEAD" S.int
let e_pfnosupport = S.constant "EPFNOSUPPORT" S.int
let e_proto = S.constant "EPROTO" S.int
let e_protonosupport = S.constant "EPROTONOSUPPORT" S.int
let e_prototype = S.constant "EPROTOTYPE" S.int
let e_remote = S.constant "EREMOTE" S.int
let e_shutdown = S.constant "ESHUTDOWN" S.int
let e_socktnosupport = S.constant "ESOCKTNOSUPPORT" S.int
let e_stale = S.constant "ESTALE" S.int
let e_time = S.constant "ETIME" S.int
let e_timedout = S.constant "ETIMEDOUT" S.int
let e_toomanyrefs = S.constant "ETOOMANYREFS" S.int
let e_users = S.constant "EUSERS" S.int
let e_bade = S.constant "EBADE" S.int
let e_badfd = S.constant "EBADFD" S.int
let e_badr = S.constant "EBADR" S.int
let e_badrqc = S.constant "EBADRQC" S.int
let e_badslt = S.constant "EBADSLT" S.int
let e_chrng = S.constant "ECHRNG" S.int
let e_comm = S.constant "ECOMM" S.int
let e_hwpoison = S.constant "EHWPOISON" S.int
let e_isnam = S.constant "EISNAM" S.int
let e_keyexpired = S.constant "EKEYEXPIRED" S.int
let e_keyrejected = S.constant "EKEYREJECTED" S.int
let e_keyrevoked = S.constant "EKEYREVOKED" S.int
let e_l2hlt = S.constant "EL2HLT" S.int
let e_l2nsync = S.constant "EL2NSYNC" S.int
let e_l3hlt = S.constant "EL3HLT" S.int
let e_l3rst = S.constant "EL3RST" S.int
let e_libacc = S.constant "ELIBACC" S.int
let e_libbad = S.constant "ELIBBAD" S.int
let e_libexec = S.constant "ELIBEXEC" S.int
let e_libmax = S.constant "ELIBMAX" S.int
let e_libscn = S.constant "ELIBSCN" S.int
let e_lnrng = S.constant "ELNRNG" S.int
let e_mediumtype = S.constant "EMEDIUMTYPE" S.int
let e_noano = S.constant "ENOANO" S.int
let e_nokey = S.constant "ENOKEY" S.int
let e_nomedium = S.constant "ENOMEDIUM" S.int
let e_nonet = S.constant "ENONET" S.int
let e_nopkg = S.constant "ENOPKG" S.int
let e_notuniq = S.constant "ENOTUNIQ" S.int
let e_remchg = S.constant "EREMCHG" S.int
let e_remoteio = S.constant "EREMOTEIO" S.int
let e_restart = S.constant "ERESTART" S.int
let e_rfkill = S.constant "ERFKILL" S.int
let e_strpipe = S.constant "ESTRPIPE" S.int
let e_toobig = S.constant "ETOOBIG" S.int
let e_uclean = S.constant "EUCLEAN" S.int
let e_unatch = S.constant "EUNATCH" S.int
let e_xfull = S.constant "EXFULL" S.int
let e_auth = S.constant "EAUTH" S.int
let e_badrpc = S.constant "EBADRPC" S.int
let e_ftype = S.constant "EFTYPE" S.int
let e_needauth = S.constant "ENEEDAUTH" S.int
let e_nocsi = S.constant "ENOCSI" S.int
let e_proclim = S.constant "EPROCLIM" S.int
let e_procunavail = S.constant "EPROCUNAVAIL" S.int
let e_progmismatch = S.constant "EPROGMISMATCH" S.int
let e_progunavail = S.constant "EPROGUNAVAIL" S.int
let e_rpcmismatch = S.constant "ERPCMISMATCH" S.int
let e_attr = S.constant "EATTR" S.int
let e_badarch = S.constant "EBADARCH" S.int
let e_badexec = S.constant "EBADEXEC" S.int
let e_badmacho = S.constant "EBADMACHO" S.int
let e_deverr = S.constant "EDEVERR" S.int
let e_noattr = S.constant "ENOATTR" S.int
let e_nopolicy = S.constant "ENOPOLICY" S.int
let e_pwroff = S.constant "EPWROFF" S.int
let e_shlibvers = S.constant "ESHLIBVERS" S.int
let e_other = S.constant "EOTHER" S.int
let e_wouldblock = S.constant "EWOULDBLOCK" S.int
let e_deadlock = S.constant "EDEADLOCK" S.int
end