Merge "[AM] Skip unnessary ANR when process already died."
am: 831a4aea1e
Change-Id: Ib8c0ffa8d50bb5a3fbc2d8f35274a8301494cd93
This commit is contained in:
@@ -756,6 +756,9 @@ class AppErrors {
|
|||||||
} else if (app.killedByAm) {
|
} else if (app.killedByAm) {
|
||||||
Slog.i(TAG, "App already killed by AM skipping ANR: " + app + " " + annotation);
|
Slog.i(TAG, "App already killed by AM skipping ANR: " + app + " " + annotation);
|
||||||
return;
|
return;
|
||||||
|
} else if (app.killed) {
|
||||||
|
Slog.i(TAG, "Skipping died app ANR: " + app + " " + annotation);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// In case we come through here for the same app before completing
|
// In case we come through here for the same app before completing
|
||||||
|
|||||||
Reference in New Issue
Block a user