Closed PhilLehmann closed 7 years ago
I retrieved the integer values from https://opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/sys/errno.h (ENOATTR 93, ENOTSUP 45) and cross checked https://github.com/jnr/jnr-constants/blob/master/src/main/java/jnr/constants/platform/Errno.java, if those error codes were already available there (only EACCES was).
It seems from errno.h, that error code 45 is used for multiple errors and it is also redundant to error EL2NSYNC in ErrorCodes, but I could not test it, as I don't have Mac OS at hand. Maybe someone else could test it?
errno.h
EL2NSYNC
ErrorCodes
@philrykoff Thanks for the contribution!
https://github.com/SerCeMan/jnr-fuse/issues/29 - to add a cross-reference
I retrieved the integer values from https://opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/sys/errno.h (ENOATTR 93, ENOTSUP 45) and cross checked https://github.com/jnr/jnr-constants/blob/master/src/main/java/jnr/constants/platform/Errno.java, if those error codes were already available there (only EACCES was).
It seems from
errno.h
, that error code 45 is used for multiple errors and it is also redundant to errorEL2NSYNC
inErrorCodes
, but I could not test it, as I don't have Mac OS at hand. Maybe someone else could test it?