File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 57957932 EPIPE Broken pipe
58058033 EDOM Numerical argument out of domain
58158134 ERANGE Result too large
582- 35 EAGAIN Resource temporarily unavailable
583- 36 EINPROGRESS Operation now in progress
584- 37 EALREADY Operation already in progress
585- 38 ENOTSOCK Socket operation on non-socket
586- 39 EDESTADDRREQ Destination address required
587- 40 EMSGSIZE Message too long
582+ 35 EFPOS File positioning error
583+ 36 ESIGPARM Signal argument error
584+ 37 ENOMEM Cannot allocate memory
585+ 38 EACCES Permission denied
586+ 39 ENOENT No such file or directory
587+ 40 ENOSYS Function not implemented
58858841 EPROTOTYPE Protocol wrong type for socket
58958942 ENOPROTOOPT Protocol not available
59059043 EPROTONOSUPPORT Protocol not supported
62462477 ENOLCK No locks available
62562578 ENOSYS Function not implemented
62662679 EFTYPE Inappropriate file type or format
627+ 136 EINPROGRESS Operation now in progress
628+ 137 EALREADY Operation already in progress
629+ 138 ENOTSOCK Socket operation on non-socket
630+ 139 EDESTADDRREQ Destination address required
631+ 140 EMSGSIZE Message too long
Original file line number Diff line number Diff line change 1+ /* These are defined in MSL errno.h, but unfortunately not documented */
2+ #define EFPOS 35 /* File positioning error */
3+ #define ESIGPARM 36 /* Signal argument error */
4+ #define ENOMEM 37 /* Cannot allocate memory */
5+ #define EACCES 38 /* Permission denied */
6+ #define ENOENT 39 /* No such file or directory */
7+ #define ENOSYS 40 /* Function not implemented */
Original file line number Diff line number Diff line change @@ -90,6 +90,12 @@ def main():
9090 parse_errno_h (fp , dict )
9191 fp .close ()
9292
93+ fss , ok = macfs .PromptGetFile ("Select 2nd errno.h or cancel" )
94+ if not ok : return
95+ fp = open (fss .as_pathname ())
96+ parse_errno_h (fp , dict )
97+ fp .close ()
98+
9399 fss , ok = macfs .PromptGetFile ("Where is Errors.h?" )
94100 if not ok : return
95101 fp = open (fss .as_pathname ())
You can’t perform that action at this time.
0 commit comments