Workaround for add_tid_to_cgroup failed to write

Bug: 6467109
Change-Id: I6dff8e608d83c7a7c453c25c94ad100f113769b9
This commit is contained in:
Glenn Kasten 2012-05-10 15:50:19 -07:00
parent 3c32e5da5b
commit 10cbbd8f1f
1 changed files with 3 additions and 1 deletions

View File

@ -101,8 +101,10 @@ struct thread_data_t {
if (gDoSchedulingGroup) {
if (prio >= ANDROID_PRIORITY_BACKGROUND) {
set_sched_policy(androidGetTid(), SP_BACKGROUND);
} else {
} else if (prio > ANDROID_PRIORITY_AUDIO) {
set_sched_policy(androidGetTid(), SP_FOREGROUND);
} else {
// defaults to that of parent, or as set by requestPriority()
}
}