resolved conflicts for merge of 53686433 to master
Change-Id: I27004dc464f5771d3205ae5757c6eccc5b16854d
This commit is contained in:
@@ -6021,12 +6021,18 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
finisher = new IIntentReceiver.Stub() {
|
||||
public void performReceive(Intent intent, int resultCode,
|
||||
String data, Bundle extras, boolean ordered,
|
||||
boolean sticky)
|
||||
throws RemoteException {
|
||||
synchronized (ActivityManagerService.this) {
|
||||
mDidUpdate = true;
|
||||
}
|
||||
systemReady(goingCallback);
|
||||
boolean sticky) {
|
||||
// The raw IIntentReceiver interface is called
|
||||
// with the AM lock held, so redispatch to
|
||||
// execute our code without the lock.
|
||||
mHandler.post(new Runnable() {
|
||||
public void run() {
|
||||
synchronized (ActivityManagerService.this) {
|
||||
mDidUpdate = true;
|
||||
}
|
||||
systemReady(goingCallback);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user