Does anybody happen to know what exit status code 4479 (0x117f) means on an Ubuntu Linux system? I am getting this without my program encoding it (I only have EXIT_SUCCESS and EXIT_FAILURE, which are 0 and 1, respectively), and I cannot seem to find a list of such codes above 255. Thank you!
feedback
|
|
This 4479 or 0x117f looks like something you would see returned from a C/C++ So in that case this value is not a 0-255 If so, then the source tells me that Signal 17 is SIGCHLD (at least if you're running Linux on x86), which means "Child [process] stopped or terminated". Without knowing more about your specific application context, I have no idea why that SIGCHLD occurs. | |||
feedback
|
|
It looks like this is the status value obtained from | |||||
feedback
|