From c3e3169f3b586d1ad30be6658698413101a57fff Mon Sep 17 00:00:00 2001 From: Nathaniel van Diepen Date: Mon, 5 Feb 2024 17:43:42 -0700 Subject: [PATCH] Don't treat sigkill as crash --- applications/system-service/application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/system-service/application.cpp b/applications/system-service/application.cpp index f6dfea77c..f2b6252b6 100644 --- a/applications/system-service/application.cpp +++ b/applications/system-service/application.cpp @@ -551,6 +551,7 @@ void Application::finished(int exitCode){ exitCode != EXIT_SUCCESS && exitCode != SIGINT && exitCode != SIGTERM + && exitCode != SIGKILL && exitCode != 128 + EXIT_SUCCESS && exitCode != 128 + SIGINT && exitCode != 128 + SIGTERM