From 209de449c97cb887cb87ce0066e7a245c2f7946f Mon Sep 17 00:00:00 2001 From: inhyositsu Date: Mon, 28 Aug 2023 07:14:06 +0800 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20exit=20the=20process=20during?= =?UTF-8?q?=20a=20crash=20(#7902)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Do not exit the process while receiving crash signal so that the system will make core dump correctly. Co-authored-by: Lemongrass3110 --- src/common/core.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common/core.cpp b/src/common/core.cpp index da951a274d..9470c92069 100644 --- a/src/common/core.cpp +++ b/src/common/core.cpp @@ -475,8 +475,6 @@ void Core::signal_crash(){ this->handle_crash(); } - // Now stop the process - exit( EXIT_FAILURE ); } void Core::signal_shutdown(){