Skip to content
Snippets Groups Projects
Commit 9d9cf5b3 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Skip ANR for processes that have been killed"

parents 796578f9 313177dc
No related branches found
No related tags found
No related merge requests found
......@@ -753,6 +753,9 @@ class AppErrors {
} else if (app.crashing) {
Slog.i(TAG, "Crashing app skipping ANR: " + app + " " + annotation);
return;
} else if (app.killedByAm) {
Slog.i(TAG, "App already killed by AM skipping ANR: " + app + " " + annotation);
return;
}
// In case we come through here for the same app before completing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment