Don’t exit the process during a crash (#7902)

* Do not exit the process while receiving crash signal so that the system will make core dump correctly.
Co-authored-by: Lemongrass3110 <lemongrass@kstp.at>
This commit is contained in:
inhyositsu 2023-08-28 07:14:06 +08:00 committed by GitHub
parent eadfa053f6
commit 209de449c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -475,8 +475,6 @@ void Core::signal_crash(){
this->handle_crash();
}
// Now stop the process
exit( EXIT_FAILURE );
}
void Core::signal_shutdown(){