Message159407
| Author |
grobian |
| Recipients |
grobian, hynek |
| Date |
2012年04月26日.17:51:16 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1335462677.04.0.18949419429.issue14662@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
it seems errnomodule.c has no idea of ENOTSUP, and that's not the only missing one.
OSX 10.7:
$ grep "^#define\sE" /usr/include/sys/errno.h | awk '{print 2ドル}' | while read line ; do grep -q ${line} Modules/errnomodule.c || echo "missing: $line" ; done
missing: ENOTSUP
missing: EBADRPC
missing: ERPCMISMATCH
missing: EPROGUNAVAIL
missing: EPROGMISMATCH
missing: EPROCUNAVAIL
missing: EFTYPE
missing: EAUTH
missing: ENEEDAUTH
missing: EPWROFF
missing: EDEVERR
missing: EBADEXEC
missing: EBADARCH
missing: ESHLIBVERS
missing: EBADMACHO
missing: ECANCELED
missing: ENOATTR
missing: ENOPOLICY
missing: ENOTRECOVERABLE
missing: EOWNERDEAD
missing: ELAST
Solaris 10:
$ grep "^#define\sE" /usr/include/sys/errno.h | awk '{print 2ドル}' | while read line ; do grep -q ${line} Modules/errnomodule.c || echo "missing: $line" ; done
missing: ECANCELED
missing: ENOTSUP
missing: EOWNERDEAD
missing: ENOTRECOVERABLE
missing: ELOCKUNMAPPED
missing: ENOTACTIVE |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年04月26日 17:51:17 | grobian | set | recipients:
+ grobian, hynek |
| 2012年04月26日 17:51:17 | grobian | set | messageid: <1335462677.04.0.18949419429.issue14662@psf.upfronthosting.co.za> |
| 2012年04月26日 17:51:16 | grobian | link | issue14662 messages |
| 2012年04月26日 17:51:16 | grobian | create |
|