diff options
Diffstat (limited to 'services/java/com/android/server/Watchdog.java')
-rw-r--r-- | services/java/com/android/server/Watchdog.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/services/java/com/android/server/Watchdog.java b/services/java/com/android/server/Watchdog.java index 167e7af..de941f2 100644 --- a/services/java/com/android/server/Watchdog.java +++ b/services/java/com/android/server/Watchdog.java @@ -386,13 +386,11 @@ public class Watchdog extends Thread { public void run() { boolean waitedHalf = false; while (true) { - mCompleted = false; - mHandler.sendEmptyMessage(MONITOR); - - final String name; synchronized (this) { long timeout = TIME_TO_WAIT; + mCompleted = false; + mHandler.sendEmptyMessage(MONITOR); // NOTE: We use uptimeMillis() here because we do not want to increment the time we // wait while asleep. If the device is asleep then the thing that we are waiting |