From: Hwankyu Jhun Date: Mon, 19 Feb 2024 04:31:19 +0000 (+0900) Subject: Revert "Change launch mode to previous operation" X-Git-Tag: accepted/tizen/unified/20240220.115640~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b34d3731b39d449115f2db8ff68ac35c79c5b91;p=platform%2Fcore%2Fappfw%2Flaunchpad.git Revert "Change launch mode to previous operation" This reverts commit bc550e7e7c90b6f17b06de7815e0cd2e99662d08. Change-Id: Ic54458ee7d0288a46f3a8c58b81d86f0fa7e1a2c --- diff --git a/src/launchpad-process-pool/conf/launchpad.conf.in b/src/launchpad-process-pool/conf/launchpad.conf.in index 139d35f4..e05b7bac 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=Previous_Operation +Mode=Default_Operation diff --git a/src/launchpad-process-pool/config.hh b/src/launchpad-process-pool/config.hh index f02f6fd5..0daf5b22 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::PreviousOperation; + Mode mode_ = Mode::DefaultOperation; }; Config(const Config&) = delete;