source: EcnlProtoTool/trunk/mrbgems/mruby-errno/src/known_errors_def.cstub@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

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