5 ms·
Exit code 139. Hm.
by crimbles 3y ago
Exit code 139. Hm.
- GTP 3y agoThat's usually not the full error message, and you can still easily find the number's meaning by opening the man page of wathever piece of software terminated with that exit code.
- nullindividual 3y agoLikewise, if you knew about err.exe, you'd also know how to be able to get the error message behind the error code.
- crimbles 3y agoDepends really. If it's some kind of runtime or VM you pretty much have zero idea what the exit code was. Python, CLR, JVM tend to leave you in this mire.
- GTP 3y agoYes, but remember that usually nowadays a piece of software also logs something to stderr instead of relying just on exit codes to signal error.
- crimbles 3y agoNot necessarily. Most of the 139's I get these days are SIGSEGV related. Obviously if you annoy the MMU at that level it's not going to get given an opportunity to write anything useful to stderr.