From bc550e7e7c90b6f17b06de7815e0cd2e99662d08 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Tue, 7 Nov 2023 15:19:04 +0900 Subject: [PATCH] Change launch mode to previous operation This patch changes the launch mode of loader management to the previous operation. Change-Id: I426a16dc1c2f58eb46132d8a789c73a6199aaa9a Signed-off-by: Hwankyu Jhun --- src/launchpad-process-pool/conf/launchpad.conf.in | 2 +- src/launchpad-process-pool/config.hh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/launchpad-process-pool/conf/launchpad.conf.in b/src/launchpad-process-pool/conf/launchpad.conf.in index e05b7ba..139d35f 100644 --- a/src/launchpad-process-pool/conf/launchpad.conf.in +++ b/src/launchpad-process-pool/conf/launchpad.conf.in @@ -36,4 +36,4 @@ NumberOfLoaderProcesses=1 ## - When the loader process is executed, the launchpad sets the low scheduling priority to the running process. ## - And then, the launchpad sets the normal priority to the running process if the launch request is delivered. [LaunchMode] -Mode=Default_Operation +Mode=Previous_Operation diff --git a/src/launchpad-process-pool/config.hh b/src/launchpad-process-pool/config.hh index 0daf5b2..f02f6fd 100644 --- a/src/launchpad-process-pool/config.hh +++ b/src/launchpad-process-pool/config.hh @@ -106,7 +106,7 @@ class Config { const Mode GetMode() const; private: - Mode mode_ = Mode::DefaultOperation; + Mode mode_ = Mode::PreviousOperation; }; Config(const Config&) = delete; -- 2.7.4