Hacker News new | ask | show | jobs
by crimbles 888 days ago
Exit code 139. Hm.
1 comments

That'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.
Likewise, if you knew about err.exe, you'd also know how to be able to get the error message behind the error code.
Depends 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.
Yes, but remember that usually nowadays a piece of software also logs something to stderr instead of relying just on exit codes to signal error.
Not 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.