Debugging help for issue #8734824: WATCHDOG KILLING SYSTEM PROCESS

The monkey now gets told about system hangs, and does stuff about
it!  Most especially, it can collect a bug report.  Monkey wins!

Change-Id: Ic8350721e715ef21d1ec813c6aff9a83262d5faa
This commit is contained in:
Dianne Hackborn
2013-05-03 16:27:39 -07:00
parent 2cd4b68cab
commit cb8739c53f
2 changed files with 59 additions and 0 deletions

View File

@@ -107,6 +107,10 @@ public class BadBehaviorActivity extends Activity {
public int appNotResponding(String proc, int pid, String st) {
return 0;
}
public int systemNotResponding(String message) {
return 0;
}
}
@Override