I have a piece of software running on a 64 bit Cent 5.8 Final box, kernel 2.6.18. This piece of software using fork
and vfork
. Recently some failures occurred, and in my logging I can see that fork
or vfork
failed, emitting a return code of -1. Cool, everything one would expect after a system call failure.
The interesting part is the errno
that is logged. Because it is errno
513. I was under the impression that the highest errno
was 131. Does anyone know how this is possible? Any insight into this issue would be extremely helpful.