My application program crashes with EXIT CODE: 9 (SIGKILL)
I never run any command such as 'kill -9 (pid)' or 'pkill (process name)' that can kill the running process.
Where should I start for debugging in this case?
I tried to dump the stack trace when the program crashes, but I found that the SIGKILL cannot be caught for error handling.
The program uses MPI and runs in cluster environments. It dies after around 1 hour of its run.
Is there any COMMON causes that can incur SIGKILL exception?
(It's running on linux; cent os 7)