Loading libprocessgroup/profiles/task_profiles_28.json +13 −0 Original line number Diff line number Diff line Loading @@ -39,6 +39,19 @@ } ] }, { "Name": "ServicePerformance", "Actions": [ { "Name": "JoinCgroup", "Params": { "Controller": "schedtune", "Path": "background" } } ] }, { "Name": "HighPerformance", "Actions": [ Loading libprocessgroup/profiles/task_profiles_29.json +13 −0 Original line number Diff line number Diff line Loading @@ -52,6 +52,19 @@ } ] }, { "Name": "ServicePerformance", "Actions": [ { "Name": "JoinCgroup", "Params": { "Controller": "schedtune", "Path": "background" } } ] }, { "Name": "MaxPerformance", "Actions": [ Loading libprocessgroup/profiles/task_profiles_30.json +13 −0 Original line number Diff line number Diff line Loading @@ -39,6 +39,19 @@ } ] }, { "Name": "ServicePerformance", "Actions": [ { "Name": "JoinCgroup", "Params": { "Controller": "schedtune", "Path": "background" } } ] }, { "Name": "HighPerformance", "Actions": [ Loading libutils/Threads.cpp +4 −2 Original line number Diff line number Diff line Loading @@ -86,8 +86,10 @@ struct thread_data_t { // A new thread will be in its parent's sched group by default, // so we just need to handle the background case. // currently set to system_background group which is different // from background group for app. if (prio >= ANDROID_PRIORITY_BACKGROUND) { SetTaskProfiles(0, {"SCHED_SP_BACKGROUND"}, true); SetTaskProfiles(0, {"SCHED_SP_SYSTEM"}, true); } if (name) { Loading Loading @@ -313,7 +315,7 @@ int androidSetThreadPriority(pid_t tid, int pri) } if (pri >= ANDROID_PRIORITY_BACKGROUND) { rc = SetTaskProfiles(tid, {"SCHED_SP_BACKGROUND"}, true) ? 0 : -1; rc = SetTaskProfiles(tid, {"SCHED_SP_SYSTEM"}, true) ? 0 : -1; } else if (curr_pri >= ANDROID_PRIORITY_BACKGROUND) { SchedPolicy policy = SP_FOREGROUND; // Change to the sched policy group of the process. Loading Loading
libprocessgroup/profiles/task_profiles_28.json +13 −0 Original line number Diff line number Diff line Loading @@ -39,6 +39,19 @@ } ] }, { "Name": "ServicePerformance", "Actions": [ { "Name": "JoinCgroup", "Params": { "Controller": "schedtune", "Path": "background" } } ] }, { "Name": "HighPerformance", "Actions": [ Loading
libprocessgroup/profiles/task_profiles_29.json +13 −0 Original line number Diff line number Diff line Loading @@ -52,6 +52,19 @@ } ] }, { "Name": "ServicePerformance", "Actions": [ { "Name": "JoinCgroup", "Params": { "Controller": "schedtune", "Path": "background" } } ] }, { "Name": "MaxPerformance", "Actions": [ Loading
libprocessgroup/profiles/task_profiles_30.json +13 −0 Original line number Diff line number Diff line Loading @@ -39,6 +39,19 @@ } ] }, { "Name": "ServicePerformance", "Actions": [ { "Name": "JoinCgroup", "Params": { "Controller": "schedtune", "Path": "background" } } ] }, { "Name": "HighPerformance", "Actions": [ Loading
libutils/Threads.cpp +4 −2 Original line number Diff line number Diff line Loading @@ -86,8 +86,10 @@ struct thread_data_t { // A new thread will be in its parent's sched group by default, // so we just need to handle the background case. // currently set to system_background group which is different // from background group for app. if (prio >= ANDROID_PRIORITY_BACKGROUND) { SetTaskProfiles(0, {"SCHED_SP_BACKGROUND"}, true); SetTaskProfiles(0, {"SCHED_SP_SYSTEM"}, true); } if (name) { Loading Loading @@ -313,7 +315,7 @@ int androidSetThreadPriority(pid_t tid, int pri) } if (pri >= ANDROID_PRIORITY_BACKGROUND) { rc = SetTaskProfiles(tid, {"SCHED_SP_BACKGROUND"}, true) ? 0 : -1; rc = SetTaskProfiles(tid, {"SCHED_SP_SYSTEM"}, true) ? 0 : -1; } else if (curr_pri >= ANDROID_PRIORITY_BACKGROUND) { SchedPolicy policy = SP_FOREGROUND; // Change to the sched policy group of the process. Loading