summaryrefslogtreecommitdiff
path: root/src/manager-lib/nativeruntime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/manager-lib/nativeruntime.cpp')
-rw-r--r--src/manager-lib/nativeruntime.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/manager-lib/nativeruntime.cpp b/src/manager-lib/nativeruntime.cpp
index 7fffb626..f32c7ff2 100644
--- a/src/manager-lib/nativeruntime.cpp
+++ b/src/manager-lib/nativeruntime.cpp
@@ -75,6 +75,7 @@ QT_BEGIN_NAMESPACE_AM
QT_END_NAMESPACE_AM
# include <dlfcn.h>
# include <sys/socket.h>
+# include <signal.h>
QT_BEGIN_NAMESPACE_AM
static qint64 getDBusPeerPid(const QDBusConnection &conn)
@@ -223,6 +224,10 @@ bool NativeRuntime::initialize()
void NativeRuntime::shutdown(int exitCode, Am::ExitStatus status)
{
+ // see NativeRuntime::stop() below
+ if ((status == Am::CrashExit) && (exitCode == SIGTERM || exitCode == SIGKILL))
+ status = Am::ForcedExit;
+
if (!m_isQuickLauncher || m_connectedToRuntimeInterface) {
qCDebug(LogSystem) << "NativeRuntime (id:" << (m_app ? m_app->id() : qSL("(none)"))
<< "pid:" << m_process->processId() << ") exited with code:" << exitCode