From b89ea2da6e469c7e863534c964c401d622c98f3c Mon Sep 17 00:00:00 2001 From: c459517356 Date: Wed, 26 Jul 2023 15:29:54 +0800 Subject: [PATCH] fixed fb429e0 from https://gitee.com/c459517356/frame_aware_sched/pulls/112 Add the function of adding a group Signed-off-by: c459517356 --- frameworks/core/frame_aware_policy/src/intellisense_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/core/frame_aware_policy/src/intellisense_server.cpp b/frameworks/core/frame_aware_policy/src/intellisense_server.cpp index d91b3d7..740bdbf 100644 --- a/frameworks/core/frame_aware_policy/src/intellisense_server.cpp +++ b/frameworks/core/frame_aware_policy/src/intellisense_server.cpp @@ -153,7 +153,7 @@ void IntelliSenseServer::NewAppRecord(int pid) } } AppInfo tempRecord(pid); - tempRecord.SetAppState(AppState::APP_FOREGROUND); + tempRecord.SetAppState(AppState::APP_FOREGROUND_WITHOUT_RTG); m_historyApp.push_back(tempRecord); } -- Gitee