rbs 3.2.0.pre.1 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/core/errno.rbs CHANGED
@@ -22,751 +22,635 @@
22
22
  # Errno.constants #=> :E2BIG, :EACCES, :EADDRINUSE, :EADDRNOTAVAIL, ...
23
23
  #
24
24
  module Errno
25
- end
26
-
27
- class Errno::E2BIG < SystemCallError
28
- end
29
-
30
- Errno::E2BIG::Errno: Integer
31
-
32
- class Errno::EACCES < SystemCallError
33
- end
34
-
35
- Errno::EACCES::Errno: Integer
36
-
37
- class Errno::EADDRINUSE < SystemCallError
38
- end
39
-
40
- Errno::EADDRINUSE::Errno: Integer
41
-
42
- class Errno::EADDRNOTAVAIL < SystemCallError
43
- end
44
-
45
- Errno::EADDRNOTAVAIL::Errno: Integer
46
-
47
- class Errno::EADV < SystemCallError
48
- end
49
-
50
- Errno::EADV::Errno: Integer
51
-
52
- class Errno::EAFNOSUPPORT < SystemCallError
53
- end
54
-
55
- Errno::EAFNOSUPPORT::Errno: Integer
56
-
57
- class Errno::EAGAIN < SystemCallError
58
- end
59
-
60
- Errno::EAGAIN::Errno: Integer
61
-
62
- class Errno::EALREADY < SystemCallError
63
- end
64
-
65
- Errno::EALREADY::Errno: Integer
66
-
67
- class Errno::EAUTH < SystemCallError
68
- end
69
-
70
- Errno::EAUTH::Errno: Integer
71
-
72
- class Errno::EBADE < SystemCallError
73
- end
74
-
75
- Errno::EBADE::Errno: Integer
76
-
77
- class Errno::EBADF < SystemCallError
78
- end
79
-
80
- Errno::EBADF::Errno: Integer
81
-
82
- class Errno::EBADFD < SystemCallError
83
- end
84
-
85
- Errno::EBADFD::Errno: Integer
86
-
87
- class Errno::EBADMSG < SystemCallError
88
- end
89
-
90
- Errno::EBADMSG::Errno: Integer
91
-
92
- class Errno::EBADR < SystemCallError
93
- end
94
-
95
- Errno::EBADR::Errno: Integer
96
-
97
- class Errno::EBADRPC < SystemCallError
98
- end
99
-
100
- Errno::EBADRPC::Errno: Integer
101
-
102
- class Errno::EBADRQC < SystemCallError
103
- end
104
-
105
- Errno::EBADRQC::Errno: Integer
106
-
107
- class Errno::EBADSLT < SystemCallError
108
- end
109
-
110
- Errno::EBADSLT::Errno: Integer
111
-
112
- class Errno::EBFONT < SystemCallError
113
- end
114
-
115
- Errno::EBFONT::Errno: Integer
116
-
117
- class Errno::EBUSY < SystemCallError
118
- end
119
-
120
- Errno::EBUSY::Errno: Integer
121
-
122
- class Errno::ECANCELED < SystemCallError
123
- end
124
-
125
- Errno::ECANCELED::Errno: Integer
126
-
127
- class Errno::ECAPMODE < SystemCallError
128
- end
129
-
130
- Errno::ECAPMODE::Errno: Integer
131
-
132
- class Errno::ECHILD < SystemCallError
133
- end
134
-
135
- Errno::ECHILD::Errno: Integer
136
-
137
- class Errno::ECHRNG < SystemCallError
138
- end
139
-
140
- Errno::ECHRNG::Errno: Integer
141
-
142
- class Errno::ECOMM < SystemCallError
143
- end
144
-
145
- Errno::ECOMM::Errno: Integer
146
-
147
- # Client sent TCP reset (RST) before server has accepted the connection
148
- # requested by client.
149
- #
150
- class Errno::ECONNABORTED < SystemCallError
151
- end
152
-
153
- Errno::ECONNABORTED::Errno: Integer
154
-
155
- class Errno::ECONNREFUSED < SystemCallError
156
- end
157
-
158
- Errno::ECONNREFUSED::Errno: Integer
159
-
160
- # Remote host reset the connection request.
161
- #
162
- class Errno::ECONNRESET < SystemCallError
163
- end
164
-
165
- Errno::ECONNRESET::Errno: Integer
166
-
167
- class Errno::EDEADLK < SystemCallError
168
- end
169
-
170
- Errno::EDEADLK::Errno: Integer
171
-
172
- class Errno::EDEADLOCK < SystemCallError
173
- end
174
-
175
- Errno::EDEADLOCK::Errno: Integer
176
-
177
- class Errno::EDESTADDRREQ < SystemCallError
178
- end
179
-
180
- Errno::EDESTADDRREQ::Errno: Integer
181
-
182
- class Errno::EDOM < SystemCallError
183
- end
184
-
185
- Errno::EDOM::Errno: Integer
186
-
187
- class Errno::EDOOFUS < SystemCallError
188
- end
189
-
190
- Errno::EDOOFUS::Errno: Integer
191
-
192
- class Errno::EDOTDOT < SystemCallError
193
- end
194
-
195
- Errno::EDOTDOT::Errno: Integer
196
-
197
- class Errno::EDQUOT < SystemCallError
198
- end
199
-
200
- Errno::EDQUOT::Errno: Integer
201
-
202
- class Errno::EEXIST < SystemCallError
203
- end
204
-
205
- Errno::EEXIST::Errno: Integer
206
-
207
- class Errno::EFAULT < SystemCallError
208
- end
209
-
210
- Errno::EFAULT::Errno: Integer
211
-
212
- class Errno::EFBIG < SystemCallError
213
- end
214
-
215
- Errno::EFBIG::Errno: Integer
216
-
217
- class Errno::EFTYPE < SystemCallError
218
- end
219
-
220
- Errno::EFTYPE::Errno: Integer
221
-
222
- class Errno::EHOSTDOWN < SystemCallError
223
- end
224
-
225
- Errno::EHOSTDOWN::Errno: Integer
226
-
227
- class Errno::EHOSTUNREACH < SystemCallError
228
- end
229
-
230
- Errno::EHOSTUNREACH::Errno: Integer
231
-
232
- class Errno::EHWPOISON < SystemCallError
233
- end
234
-
235
- Errno::EHWPOISON::Errno: Integer
236
-
237
- class Errno::EIDRM < SystemCallError
238
- end
239
-
240
- Errno::EIDRM::Errno: Integer
241
-
242
- class Errno::EILSEQ < SystemCallError
243
- end
244
-
245
- Errno::EILSEQ::Errno: Integer
246
-
247
- class Errno::EINPROGRESS < SystemCallError
248
- end
249
-
250
- Errno::EINPROGRESS::Errno: Integer
251
-
252
- class Errno::EINTR < SystemCallError
253
- end
254
-
255
- Errno::EINTR::Errno: Integer
256
-
257
- class Errno::EINVAL < SystemCallError
258
- end
259
-
260
- Errno::EINVAL::Errno: Integer
261
-
262
- class Errno::EIO < SystemCallError
263
- end
264
-
265
- Errno::EIO::Errno: Integer
266
-
267
- class Errno::EIPSEC < SystemCallError
268
- end
25
+ class NOERROR < SystemCallError
26
+ Errno: 0
27
+ end
269
28
 
270
- Errno::EIPSEC::Errno: Integer
29
+ class E2BIG < SystemCallError
30
+ Errno: Integer
31
+ end
271
32
 
272
- class Errno::EISCONN < SystemCallError
273
- end
33
+ class EACCES < SystemCallError
34
+ Errno: Integer
35
+ end
274
36
 
275
- Errno::EISCONN::Errno: Integer
37
+ class EADDRINUSE < SystemCallError
38
+ Errno: Integer
39
+ end
276
40
 
277
- class Errno::EISDIR < SystemCallError
278
- end
41
+ class EADDRNOTAVAIL < SystemCallError
42
+ Errno: Integer
43
+ end
279
44
 
280
- Errno::EISDIR::Errno: Integer
45
+ class EADV < SystemCallError
46
+ Errno: Integer
47
+ end
281
48
 
282
- class Errno::EISNAM < SystemCallError
283
- end
49
+ class EAFNOSUPPORT < SystemCallError
50
+ Errno: Integer
51
+ end
284
52
 
285
- Errno::EISNAM::Errno: Integer
53
+ class EAGAIN < SystemCallError
54
+ Errno: Integer
55
+ end
286
56
 
287
- class Errno::EKEYEXPIRED < SystemCallError
288
- end
57
+ class EALREADY < SystemCallError
58
+ Errno: Integer
59
+ end
289
60
 
290
- Errno::EKEYEXPIRED::Errno: Integer
61
+ class EAUTH < SystemCallError
62
+ Errno: Integer
63
+ end
291
64
 
292
- class Errno::EKEYREJECTED < SystemCallError
293
- end
65
+ class EBADARCH < SystemCallError
66
+ Errno: Integer
67
+ end
294
68
 
295
- Errno::EKEYREJECTED::Errno: Integer
69
+ class EBADE < SystemCallError
70
+ Errno: Integer
71
+ end
296
72
 
297
- class Errno::EKEYREVOKED < SystemCallError
298
- end
73
+ class EBADEXEC < SystemCallError
74
+ Errno: Integer
75
+ end
299
76
 
300
- Errno::EKEYREVOKED::Errno: Integer
77
+ class EBADF < SystemCallError
78
+ Errno: Integer
79
+ end
301
80
 
302
- class Errno::EL2HLT < SystemCallError
303
- end
81
+ class EBADFD < SystemCallError
82
+ Errno: Integer
83
+ end
304
84
 
305
- Errno::EL2HLT::Errno: Integer
85
+ class EBADMACHO < SystemCallError
86
+ Errno: Integer
87
+ end
306
88
 
307
- class Errno::EL2NSYNC < SystemCallError
308
- end
89
+ class EBADMSG < SystemCallError
90
+ Errno: Integer
91
+ end
309
92
 
310
- Errno::EL2NSYNC::Errno: Integer
93
+ class EBADR < SystemCallError
94
+ Errno: Integer
95
+ end
311
96
 
312
- class Errno::EL3HLT < SystemCallError
313
- end
97
+ class EBADRPC < SystemCallError
98
+ Errno: Integer
99
+ end
314
100
 
315
- Errno::EL3HLT::Errno: Integer
101
+ class EBADRQC < SystemCallError
102
+ Errno: Integer
103
+ end
316
104
 
317
- class Errno::EL3RST < SystemCallError
318
- end
105
+ class EBADSLT < SystemCallError
106
+ Errno: Integer
107
+ end
319
108
 
320
- Errno::EL3RST::Errno: Integer
109
+ class EBFONT < SystemCallError
110
+ Errno: Integer
111
+ end
321
112
 
322
- class Errno::ELIBACC < SystemCallError
323
- end
113
+ class EBUSY < SystemCallError
114
+ Errno: Integer
115
+ end
324
116
 
325
- Errno::ELIBACC::Errno: Integer
117
+ class ECANCELED < SystemCallError
118
+ Errno: Integer
119
+ end
326
120
 
327
- class Errno::ELIBBAD < SystemCallError
328
- end
121
+ class ECAPMODE < SystemCallError
122
+ Errno: Integer
123
+ end
329
124
 
330
- Errno::ELIBBAD::Errno: Integer
125
+ class ECHILD < SystemCallError
126
+ Errno: Integer
127
+ end
331
128
 
332
- class Errno::ELIBEXEC < SystemCallError
333
- end
129
+ class ECHRNG < SystemCallError
130
+ Errno: Integer
131
+ end
334
132
 
335
- Errno::ELIBEXEC::Errno: Integer
133
+ class ECOMM < SystemCallError
134
+ Errno: Integer
135
+ end
336
136
 
337
- class Errno::ELIBMAX < SystemCallError
338
- end
137
+ class ECONNABORTED < SystemCallError
138
+ Errno: Integer
139
+ end
339
140
 
340
- Errno::ELIBMAX::Errno: Integer
141
+ class ECONNREFUSED < SystemCallError
142
+ Errno: Integer
143
+ end
341
144
 
342
- class Errno::ELIBSCN < SystemCallError
343
- end
145
+ class ECONNRESET < SystemCallError
146
+ Errno: Integer
147
+ end
344
148
 
345
- Errno::ELIBSCN::Errno: Integer
149
+ class EDEADLK < SystemCallError
150
+ Errno: Integer
151
+ end
346
152
 
347
- class Errno::ELNRNG < SystemCallError
348
- end
153
+ class EDEADLOCK < SystemCallError
154
+ Errno: Integer
155
+ end
349
156
 
350
- Errno::ELNRNG::Errno: Integer
157
+ class EDESTADDRREQ < SystemCallError
158
+ Errno: Integer
159
+ end
351
160
 
352
- class Errno::ELOOP < SystemCallError
353
- end
161
+ class EDEVERR < SystemCallError
162
+ Errno: Integer
163
+ end
354
164
 
355
- Errno::ELOOP::Errno: Integer
165
+ class EDOM < SystemCallError
166
+ Errno: Integer
167
+ end
356
168
 
357
- class Errno::EMEDIUMTYPE < SystemCallError
358
- end
169
+ class EDOOFUS < SystemCallError
170
+ Errno: Integer
171
+ end
359
172
 
360
- Errno::EMEDIUMTYPE::Errno: Integer
173
+ class EDOTDOT < SystemCallError
174
+ Errno: Integer
175
+ end
361
176
 
362
- class Errno::EMFILE < SystemCallError
363
- end
177
+ class EDQUOT < SystemCallError
178
+ Errno: Integer
179
+ end
364
180
 
365
- Errno::EMFILE::Errno: Integer
181
+ class EEXIST < SystemCallError
182
+ Errno: Integer
183
+ end
366
184
 
367
- class Errno::EMLINK < SystemCallError
368
- end
185
+ class EFAULT < SystemCallError
186
+ Errno: Integer
187
+ end
369
188
 
370
- Errno::EMLINK::Errno: Integer
189
+ class EFBIG < SystemCallError
190
+ Errno: Integer
191
+ end
371
192
 
372
- class Errno::EMSGSIZE < SystemCallError
373
- end
193
+ class EFTYPE < SystemCallError
194
+ Errno: Integer
195
+ end
374
196
 
375
- Errno::EMSGSIZE::Errno: Integer
197
+ class EHOSTDOWN < SystemCallError
198
+ Errno: Integer
199
+ end
376
200
 
377
- class Errno::EMULTIHOP < SystemCallError
378
- end
201
+ class EHOSTUNREACH < SystemCallError
202
+ Errno: Integer
203
+ end
379
204
 
380
- Errno::EMULTIHOP::Errno: Integer
205
+ class EHWPOISON < SystemCallError
206
+ Errno: Integer
207
+ end
381
208
 
382
- class Errno::ENAMETOOLONG < SystemCallError
383
- end
209
+ class EIDRM < SystemCallError
210
+ Errno: Integer
211
+ end
384
212
 
385
- Errno::ENAMETOOLONG::Errno: Integer
213
+ class EILSEQ < SystemCallError
214
+ Errno: Integer
215
+ end
386
216
 
387
- class Errno::ENAVAIL < SystemCallError
388
- end
217
+ class EINPROGRESS < SystemCallError
218
+ Errno: Integer
219
+ end
389
220
 
390
- Errno::ENAVAIL::Errno: Integer
221
+ class EINTR < SystemCallError
222
+ Errno: Integer
223
+ end
391
224
 
392
- class Errno::ENEEDAUTH < SystemCallError
393
- end
225
+ class EINVAL < SystemCallError
226
+ Errno: Integer
227
+ end
394
228
 
395
- Errno::ENEEDAUTH::Errno: Integer
229
+ class EIO < SystemCallError
230
+ Errno: Integer
231
+ end
396
232
 
397
- class Errno::ENETDOWN < SystemCallError
398
- end
233
+ class EIPSEC < SystemCallError
234
+ Errno: Integer
235
+ end
399
236
 
400
- Errno::ENETDOWN::Errno: Integer
237
+ class EISCONN < SystemCallError
238
+ Errno: Integer
239
+ end
401
240
 
402
- class Errno::ENETRESET < SystemCallError
403
- end
241
+ class EISDIR < SystemCallError
242
+ Errno: Integer
243
+ end
404
244
 
405
- Errno::ENETRESET::Errno: Integer
245
+ class EISNAM < SystemCallError
246
+ Errno: Integer
247
+ end
406
248
 
407
- class Errno::ENETUNREACH < SystemCallError
408
- end
249
+ class EKEYEXPIRED < SystemCallError
250
+ Errno: Integer
251
+ end
409
252
 
410
- Errno::ENETUNREACH::Errno: Integer
253
+ class EKEYREJECTED < SystemCallError
254
+ Errno: Integer
255
+ end
411
256
 
412
- class Errno::ENFILE < SystemCallError
413
- end
257
+ class EKEYREVOKED < SystemCallError
258
+ Errno: Integer
259
+ end
414
260
 
415
- Errno::ENFILE::Errno: Integer
261
+ class EL2HLT < SystemCallError
262
+ Errno: Integer
263
+ end
416
264
 
417
- class Errno::ENOANO < SystemCallError
418
- end
265
+ class EL2NSYNC < SystemCallError
266
+ Errno: Integer
267
+ end
419
268
 
420
- Errno::ENOANO::Errno: Integer
269
+ class EL3HLT < SystemCallError
270
+ Errno: Integer
271
+ end
421
272
 
422
- class Errno::ENOATTR < SystemCallError
423
- end
273
+ class EL3RST < SystemCallError
274
+ Errno: Integer
275
+ end
424
276
 
425
- Errno::ENOATTR::Errno: Integer
277
+ class ELAST < SystemCallError
278
+ Errno: Integer
279
+ end
426
280
 
427
- class Errno::ENOBUFS < SystemCallError
428
- end
281
+ class ELIBACC < SystemCallError
282
+ Errno: Integer
283
+ end
429
284
 
430
- Errno::ENOBUFS::Errno: Integer
285
+ class ELIBBAD < SystemCallError
286
+ Errno: Integer
287
+ end
431
288
 
432
- class Errno::ENOCSI < SystemCallError
433
- end
289
+ class ELIBEXEC < SystemCallError
290
+ Errno: Integer
291
+ end
434
292
 
435
- Errno::ENOCSI::Errno: Integer
293
+ class ELIBMAX < SystemCallError
294
+ Errno: Integer
295
+ end
436
296
 
437
- class Errno::ENODATA < SystemCallError
438
- end
297
+ class ELIBSCN < SystemCallError
298
+ Errno: Integer
299
+ end
439
300
 
440
- Errno::ENODATA::Errno: Integer
301
+ class ELNRNG < SystemCallError
302
+ Errno: Integer
303
+ end
441
304
 
442
- class Errno::ENODEV < SystemCallError
443
- end
305
+ class ELOOP < SystemCallError
306
+ Errno: Integer
307
+ end
444
308
 
445
- Errno::ENODEV::Errno: Integer
309
+ class EMEDIUMTYPE < SystemCallError
310
+ Errno: Integer
311
+ end
446
312
 
447
- class Errno::ENOENT < SystemCallError
448
- end
313
+ class EMFILE < SystemCallError
314
+ Errno: Integer
315
+ end
449
316
 
450
- Errno::ENOENT::Errno: Integer
317
+ class EMLINK < SystemCallError
318
+ Errno: Integer
319
+ end
451
320
 
452
- class Errno::ENOEXEC < SystemCallError
453
- end
321
+ class EMSGSIZE < SystemCallError
322
+ Errno: Integer
323
+ end
454
324
 
455
- Errno::ENOEXEC::Errno: Integer
325
+ class EMULTIHOP < SystemCallError
326
+ Errno: Integer
327
+ end
456
328
 
457
- class Errno::ENOKEY < SystemCallError
458
- end
329
+ class ENAMETOOLONG < SystemCallError
330
+ Errno: Integer
331
+ end
459
332
 
460
- Errno::ENOKEY::Errno: Integer
333
+ class ENAVAIL < SystemCallError
334
+ Errno: Integer
335
+ end
461
336
 
462
- class Errno::ENOLCK < SystemCallError
463
- end
337
+ class ENEEDAUTH < SystemCallError
338
+ Errno: Integer
339
+ end
464
340
 
465
- Errno::ENOLCK::Errno: Integer
341
+ class ENETDOWN < SystemCallError
342
+ Errno: Integer
343
+ end
466
344
 
467
- class Errno::ENOLINK < SystemCallError
468
- end
345
+ class ENETRESET < SystemCallError
346
+ Errno: Integer
347
+ end
469
348
 
470
- Errno::ENOLINK::Errno: Integer
349
+ class ENETUNREACH < SystemCallError
350
+ Errno: Integer
351
+ end
471
352
 
472
- class Errno::ENOMEDIUM < SystemCallError
473
- end
353
+ class ENFILE < SystemCallError
354
+ Errno: Integer
355
+ end
474
356
 
475
- Errno::ENOMEDIUM::Errno: Integer
357
+ class ENOANO < SystemCallError
358
+ Errno: Integer
359
+ end
476
360
 
477
- class Errno::ENOMEM < SystemCallError
478
- end
361
+ class ENOATTR < SystemCallError
362
+ Errno: Integer
363
+ end
479
364
 
480
- Errno::ENOMEM::Errno: Integer
365
+ class ENOBUFS < SystemCallError
366
+ Errno: Integer
367
+ end
481
368
 
482
- class Errno::ENOMSG < SystemCallError
483
- end
369
+ class ENOCSI < SystemCallError
370
+ Errno: Integer
371
+ end
484
372
 
485
- Errno::ENOMSG::Errno: Integer
373
+ class ENODATA < SystemCallError
374
+ Errno: Integer
375
+ end
486
376
 
487
- class Errno::ENONET < SystemCallError
488
- end
377
+ class ENODEV < SystemCallError
378
+ Errno: Integer
379
+ end
489
380
 
490
- Errno::ENONET::Errno: Integer
381
+ class ENOENT < SystemCallError
382
+ Errno: Integer
383
+ end
491
384
 
492
- class Errno::ENOPKG < SystemCallError
493
- end
385
+ class ENOEXEC < SystemCallError
386
+ Errno: Integer
387
+ end
494
388
 
495
- Errno::ENOPKG::Errno: Integer
389
+ class ENOKEY < SystemCallError
390
+ Errno: Integer
391
+ end
496
392
 
497
- class Errno::ENOPROTOOPT < SystemCallError
498
- end
393
+ class ENOLCK < SystemCallError
394
+ Errno: Integer
395
+ end
499
396
 
500
- Errno::ENOPROTOOPT::Errno: Integer
397
+ class ENOLINK < SystemCallError
398
+ Errno: Integer
399
+ end
501
400
 
502
- class Errno::ENOSPC < SystemCallError
503
- end
401
+ class ENOMEDIUM < SystemCallError
402
+ Errno: Integer
403
+ end
504
404
 
505
- Errno::ENOSPC::Errno: Integer
405
+ class ENOMEM < SystemCallError
406
+ Errno: Integer
407
+ end
506
408
 
507
- class Errno::ENOSR < SystemCallError
508
- end
409
+ class ENOMSG < SystemCallError
410
+ Errno: Integer
411
+ end
509
412
 
510
- Errno::ENOSR::Errno: Integer
413
+ class ENONET < SystemCallError
414
+ Errno: Integer
415
+ end
511
416
 
512
- class Errno::ENOSTR < SystemCallError
513
- end
417
+ class ENOPKG < SystemCallError
418
+ Errno: Integer
419
+ end
514
420
 
515
- Errno::ENOSTR::Errno: Integer
421
+ class ENOPOLICY < SystemCallError
422
+ Errno: Integer
423
+ end
516
424
 
517
- class Errno::ENOSYS < SystemCallError
518
- end
425
+ class ENOPROTOOPT < SystemCallError
426
+ Errno: Integer
427
+ end
519
428
 
520
- Errno::ENOSYS::Errno: Integer
429
+ class ENOSPC < SystemCallError
430
+ Errno: Integer
431
+ end
521
432
 
522
- class Errno::ENOTBLK < SystemCallError
523
- end
433
+ class ENOSR < SystemCallError
434
+ Errno: Integer
435
+ end
524
436
 
525
- Errno::ENOTBLK::Errno: Integer
437
+ class ENOSTR < SystemCallError
438
+ Errno: Integer
439
+ end
526
440
 
527
- class Errno::ENOTCAPABLE < SystemCallError
528
- end
441
+ class ENOSYS < SystemCallError
442
+ Errno: Integer
443
+ end
529
444
 
530
- Errno::ENOTCAPABLE::Errno: Integer
445
+ class ENOTBLK < SystemCallError
446
+ Errno: Integer
447
+ end
531
448
 
532
- class Errno::ENOTCONN < SystemCallError
533
- end
449
+ class ENOTCAPABLE < SystemCallError
450
+ Errno: Integer
451
+ end
534
452
 
535
- Errno::ENOTCONN::Errno: Integer
453
+ class ENOTCONN < SystemCallError
454
+ Errno: Integer
455
+ end
536
456
 
537
- class Errno::ENOTDIR < SystemCallError
538
- end
457
+ class ENOTDIR < SystemCallError
458
+ Errno: Integer
459
+ end
539
460
 
540
- Errno::ENOTDIR::Errno: Integer
461
+ class ENOTEMPTY < SystemCallError
462
+ Errno: Integer
463
+ end
541
464
 
542
- class Errno::ENOTEMPTY < SystemCallError
543
- end
465
+ class ENOTNAM < SystemCallError
466
+ Errno: Integer
467
+ end
544
468
 
545
- Errno::ENOTEMPTY::Errno: Integer
469
+ class ENOTRECOVERABLE < SystemCallError
470
+ Errno: Integer
471
+ end
546
472
 
547
- class Errno::ENOTNAM < SystemCallError
548
- end
473
+ class ENOTSOCK < SystemCallError
474
+ Errno: Integer
475
+ end
549
476
 
550
- Errno::ENOTNAM::Errno: Integer
477
+ class ENOTSUP < SystemCallError
478
+ Errno: Integer
479
+ end
551
480
 
552
- class Errno::ENOTRECOVERABLE < SystemCallError
553
- end
481
+ class ENOTTY < SystemCallError
482
+ Errno: Integer
483
+ end
554
484
 
555
- Errno::ENOTRECOVERABLE::Errno: Integer
485
+ class ENOTUNIQ < SystemCallError
486
+ Errno: Integer
487
+ end
556
488
 
557
- class Errno::ENOTSOCK < SystemCallError
558
- end
489
+ class ENXIO < SystemCallError
490
+ Errno: Integer
491
+ end
559
492
 
560
- Errno::ENOTSOCK::Errno: Integer
493
+ class EOPNOTSUPP < SystemCallError
494
+ Errno: Integer
495
+ end
561
496
 
562
- class Errno::ENOTSUP < SystemCallError
563
- end
497
+ class EOVERFLOW < SystemCallError
498
+ Errno: Integer
499
+ end
564
500
 
565
- Errno::ENOTSUP::Errno: Integer
501
+ class EOWNERDEAD < SystemCallError
502
+ Errno: Integer
503
+ end
566
504
 
567
- class Errno::ENOTTY < SystemCallError
568
- end
505
+ class EPERM < SystemCallError
506
+ Errno: Integer
507
+ end
569
508
 
570
- Errno::ENOTTY::Errno: Integer
509
+ class EPFNOSUPPORT < SystemCallError
510
+ Errno: Integer
511
+ end
571
512
 
572
- class Errno::ENOTUNIQ < SystemCallError
573
- end
513
+ class EPIPE < SystemCallError
514
+ Errno: Integer
515
+ end
574
516
 
575
- Errno::ENOTUNIQ::Errno: Integer
517
+ class EPROCLIM < SystemCallError
518
+ Errno: Integer
519
+ end
576
520
 
577
- class Errno::ENXIO < SystemCallError
578
- end
521
+ class EPROCUNAVAIL < SystemCallError
522
+ Errno: Integer
523
+ end
579
524
 
580
- Errno::ENXIO::Errno: Integer
525
+ class EPROGMISMATCH < SystemCallError
526
+ Errno: Integer
527
+ end
581
528
 
582
- class Errno::EOPNOTSUPP < SystemCallError
583
- end
529
+ class EPROGUNAVAIL < SystemCallError
530
+ Errno: Integer
531
+ end
584
532
 
585
- Errno::EOPNOTSUPP::Errno: Integer
533
+ class EPROTO < SystemCallError
534
+ Errno: Integer
535
+ end
586
536
 
587
- class Errno::EOVERFLOW < SystemCallError
588
- end
537
+ class EPROTONOSUPPORT < SystemCallError
538
+ Errno: Integer
539
+ end
589
540
 
590
- Errno::EOVERFLOW::Errno: Integer
541
+ class EPROTOTYPE < SystemCallError
542
+ Errno: Integer
543
+ end
591
544
 
592
- class Errno::EOWNERDEAD < SystemCallError
593
- end
545
+ class EPWROFF < SystemCallError
546
+ Errno: Integer
547
+ end
594
548
 
595
- Errno::EOWNERDEAD::Errno: Integer
549
+ class EQFULL < SystemCallError
550
+ Errno: Integer
551
+ end
596
552
 
597
- class Errno::EPERM < SystemCallError
598
- end
553
+ class ERANGE < SystemCallError
554
+ Errno: Integer
555
+ end
599
556
 
600
- Errno::EPERM::Errno: Integer
557
+ class EREMCHG < SystemCallError
558
+ Errno: Integer
559
+ end
601
560
 
602
- class Errno::EPFNOSUPPORT < SystemCallError
603
- end
561
+ class EREMOTE < SystemCallError
562
+ Errno: Integer
563
+ end
604
564
 
605
- Errno::EPFNOSUPPORT::Errno: Integer
565
+ class EREMOTEIO < SystemCallError
566
+ Errno: Integer
567
+ end
606
568
 
607
- class Errno::EPIPE < SystemCallError
608
- end
569
+ class ERESTART < SystemCallError
570
+ Errno: Integer
571
+ end
609
572
 
610
- Errno::EPIPE::Errno: Integer
573
+ class ERFKILL < SystemCallError
574
+ Errno: Integer
575
+ end
611
576
 
612
- class Errno::EPROCLIM < SystemCallError
613
- end
577
+ class EROFS < SystemCallError
578
+ Errno: Integer
579
+ end
614
580
 
615
- Errno::EPROCLIM::Errno: Integer
581
+ class ERPCMISMATCH < SystemCallError
582
+ Errno: Integer
583
+ end
616
584
 
617
- class Errno::EPROCUNAVAIL < SystemCallError
618
- end
585
+ class ESHLIBVERS < SystemCallError
586
+ Errno: Integer
587
+ end
619
588
 
620
- Errno::EPROCUNAVAIL::Errno: Integer
589
+ class ESHUTDOWN < SystemCallError
590
+ Errno: Integer
591
+ end
621
592
 
622
- class Errno::EPROGMISMATCH < SystemCallError
623
- end
593
+ class ESOCKTNOSUPPORT < SystemCallError
594
+ Errno: Integer
595
+ end
624
596
 
625
- Errno::EPROGMISMATCH::Errno: Integer
597
+ class ESPIPE < SystemCallError
598
+ Errno: Integer
599
+ end
626
600
 
627
- class Errno::EPROGUNAVAIL < SystemCallError
628
- end
601
+ class ESRCH < SystemCallError
602
+ Errno: Integer
603
+ end
629
604
 
630
- Errno::EPROGUNAVAIL::Errno: Integer
605
+ class ESRMNT < SystemCallError
606
+ Errno: Integer
607
+ end
631
608
 
632
- # Protocol error.
633
- #
634
- class Errno::EPROTO < SystemCallError
635
- end
636
-
637
- Errno::EPROTO::Errno: Integer
638
-
639
- class Errno::EPROTONOSUPPORT < SystemCallError
640
- end
641
-
642
- Errno::EPROTONOSUPPORT::Errno: Integer
643
-
644
- class Errno::EPROTOTYPE < SystemCallError
645
- end
646
-
647
- Errno::EPROTOTYPE::Errno: Integer
648
-
649
- class Errno::ERANGE < SystemCallError
650
- end
651
-
652
- Errno::ERANGE::Errno: Integer
653
-
654
- class Errno::EREMCHG < SystemCallError
655
- end
656
-
657
- Errno::EREMCHG::Errno: Integer
658
-
659
- class Errno::EREMOTE < SystemCallError
660
- end
661
-
662
- Errno::EREMOTE::Errno: Integer
663
-
664
- class Errno::EREMOTEIO < SystemCallError
665
- end
666
-
667
- Errno::EREMOTEIO::Errno: Integer
668
-
669
- class Errno::ERESTART < SystemCallError
670
- end
671
-
672
- Errno::ERESTART::Errno: Integer
673
-
674
- class Errno::ERFKILL < SystemCallError
675
- end
676
-
677
- Errno::ERFKILL::Errno: Integer
678
-
679
- class Errno::EROFS < SystemCallError
680
- end
681
-
682
- Errno::EROFS::Errno: Integer
683
-
684
- class Errno::ERPCMISMATCH < SystemCallError
685
- end
686
-
687
- Errno::ERPCMISMATCH::Errno: Integer
688
-
689
- class Errno::ESHUTDOWN < SystemCallError
690
- end
691
-
692
- Errno::ESHUTDOWN::Errno: Integer
609
+ class ESTALE < SystemCallError
610
+ Errno: Integer
611
+ end
693
612
 
694
- class Errno::ESOCKTNOSUPPORT < SystemCallError
695
- end
696
-
697
- Errno::ESOCKTNOSUPPORT::Errno: Integer
698
-
699
- class Errno::ESPIPE < SystemCallError
700
- end
701
-
702
- Errno::ESPIPE::Errno: Integer
703
-
704
- class Errno::ESRCH < SystemCallError
705
- end
706
-
707
- Errno::ESRCH::Errno: Integer
708
-
709
- class Errno::ESRMNT < SystemCallError
710
- end
711
-
712
- Errno::ESRMNT::Errno: Integer
713
-
714
- class Errno::ESTALE < SystemCallError
715
- end
716
-
717
- Errno::ESTALE::Errno: Integer
718
-
719
- class Errno::ESTRPIPE < SystemCallError
720
- end
721
-
722
- Errno::ESTRPIPE::Errno: Integer
723
-
724
- class Errno::ETIME < SystemCallError
725
- end
726
-
727
- Errno::ETIME::Errno: Integer
728
-
729
- class Errno::ETIMEDOUT < SystemCallError
730
- end
731
-
732
- Errno::ETIMEDOUT::Errno: Integer
733
-
734
- class Errno::ETOOMANYREFS < SystemCallError
735
- end
736
-
737
- Errno::ETOOMANYREFS::Errno: Integer
738
-
739
- class Errno::ETXTBSY < SystemCallError
740
- end
613
+ class ESTRPIPE < SystemCallError
614
+ Errno: Integer
615
+ end
741
616
 
742
- Errno::ETXTBSY::Errno: Integer
617
+ class ETIME < SystemCallError
618
+ Errno: Integer
619
+ end
743
620
 
744
- class Errno::EUCLEAN < SystemCallError
745
- end
621
+ class ETIMEDOUT < SystemCallError
622
+ Errno: Integer
623
+ end
746
624
 
747
- Errno::EUCLEAN::Errno: Integer
625
+ class ETOOMANYREFS < SystemCallError
626
+ Errno: Integer
627
+ end
748
628
 
749
- class Errno::EUNATCH < SystemCallError
750
- end
629
+ class ETXTBSY < SystemCallError
630
+ Errno: Integer
631
+ end
751
632
 
752
- Errno::EUNATCH::Errno: Integer
633
+ class EUCLEAN < SystemCallError
634
+ Errno: Integer
635
+ end
753
636
 
754
- class Errno::EUSERS < SystemCallError
755
- end
637
+ class EUNATCH < SystemCallError
638
+ Errno: Integer
639
+ end
756
640
 
757
- Errno::EUSERS::Errno: Integer
641
+ class EUSERS < SystemCallError
642
+ Errno: Integer
643
+ end
758
644
 
759
- class Errno::EWOULDBLOCK < SystemCallError
760
- end
645
+ class EWOULDBLOCK < SystemCallError
646
+ Errno: Integer
647
+ end
761
648
 
762
- Errno::EWOULDBLOCK::Errno: Integer
649
+ class EXDEV < SystemCallError
650
+ Errno: Integer
651
+ end
763
652
 
764
- class Errno::EXDEV < SystemCallError
653
+ class EXFULL < SystemCallError
654
+ Errno: Integer
655
+ end
765
656
  end
766
-
767
- Errno::EXDEV::Errno: Integer
768
-
769
- class Errno::EXFULL < SystemCallError
770
- end
771
-
772
- Errno::EXFULL::Errno: Integer