Merge "Correctly set thread group to UiThread's thread." into oc-dev

am: 479bb430d1

Change-Id: I59b38f14864d12aff442cdf5a92b64a56c35dc19
This commit is contained in:
Makoto Onuki
2017-03-28 22:28:20 +00:00
committed by android-build-merger

View File

@@ -33,8 +33,13 @@ public final class UiThread extends ServiceThread {
private UiThread() {
super("android.ui", Process.THREAD_PRIORITY_FOREGROUND, false /*allowIo*/);
}
@Override
public void run() {
// Make sure UiThread is in the fg stune boost group
Process.setThreadGroup(Process.myTid(), Process.THREAD_GROUP_TOP_APP);
super.run();
}
private static void ensureThreadLocked() {