소스 검색

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>
inhyositsu 1 년 전
부모
커밋
209de449c9
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      src/common/core.cpp

+ 0 - 2
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(){