Merge "Workaround 64 bit devices that don't have zygotes yet."
This commit is contained in:
@ -372,7 +372,7 @@ public class Process {
|
|||||||
for (int i = 0; i < tries; i++) {
|
for (int i = 0; i < tries; i++) {
|
||||||
if (i > 0) {
|
if (i > 0) {
|
||||||
try {
|
try {
|
||||||
Log.i("Zygote", "Zygote not up yet, sleeping...");
|
Log.i(LOG_TAG, "Zygote not up yet, sleeping...");
|
||||||
Thread.sleep(ZYGOTE_RETRY_MILLIS);
|
Thread.sleep(ZYGOTE_RETRY_MILLIS);
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
throw new ZygoteStartFailedEx(ex);
|
throw new ZygoteStartFailedEx(ex);
|
||||||
@ -707,6 +707,16 @@ public class Process {
|
|||||||
return primaryZygoteState;
|
return primaryZygoteState;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Get rid of this. This is a temporary workaround until all the
|
||||||
|
// compilation related pieces for the dual zygote stack are ready.
|
||||||
|
// b/3647418.
|
||||||
|
if (System.getenv("ANDROID_SOCKET_" + SECONDARY_ZYGOTE_SOCKET) == null) {
|
||||||
|
Log.e(LOG_TAG, "Forcing app to primary zygote, secondary unavailable (ABI= " + abi + ")");
|
||||||
|
// Should be :
|
||||||
|
// throw new ZygoteStartFailedEx("Unsupported zygote ABI: " + abi);
|
||||||
|
return primaryZygoteState;
|
||||||
|
}
|
||||||
|
|
||||||
// The primary zygote didn't match. Try the secondary.
|
// The primary zygote didn't match. Try the secondary.
|
||||||
if (secondaryZygoteState == null || secondaryZygoteState.isClosed()) {
|
if (secondaryZygoteState == null || secondaryZygoteState.isClosed()) {
|
||||||
secondaryZygoteState = ZygoteState.connect(SECONDARY_ZYGOTE_SOCKET,
|
secondaryZygoteState = ZygoteState.connect(SECONDARY_ZYGOTE_SOCKET,
|
||||||
|
Reference in New Issue
Block a user