Merge "Acquire service lock in AppTaskImpl.moveToFront()"

This commit is contained in:
Wale Ogunwale
2018-07-12 03:30:20 +00:00
committed by Android (Google) Code Review

View File

@@ -97,7 +97,7 @@ class AppTaskImpl extends IAppTask.Stub {
final int callingUid = Binder.getCallingUid();
final long origId = Binder.clearCallingIdentity();
try {
synchronized (this) {
synchronized (mService.mGlobalLock) {
mService.mStackSupervisor.startActivityFromRecents(callingPid, callingUid, mTaskId,
null);
}