summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2011-11-30 14:12:44 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-11-30 14:12:44 -0800
commit88f10c6ce5a97b1990934148deb8ed6aa6ef7a48 (patch)
tree3306ba67dfea6cffdf3bdc9c9467cb3f48dc881f /core/java
parentf8d20bd6495883e98e23827a2e5ed03766fe483b (diff)
parent1fbee79eb31011fa260d9fe088c165cc9171d98b (diff)
downloadframeworks_base-88f10c6ce5a97b1990934148deb8ed6aa6ef7a48.zip
frameworks_base-88f10c6ce5a97b1990934148deb8ed6aa6ef7a48.tar.gz
frameworks_base-88f10c6ce5a97b1990934148deb8ed6aa6ef7a48.tar.bz2
Merge "Fix issue #5679504: Device stuck and sudden reboot - Watchdog reset?" into ics-mr1
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/app/ActivityThread.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java
index 303f81b..0c761fc 100644
--- a/core/java/android/app/ActivityThread.java
+++ b/core/java/android/app/ActivityThread.java
@@ -175,11 +175,11 @@ public final class ActivityThread {
// These can be accessed by multiple threads; mPackages is the lock.
// XXX For now we keep around information about all packages we have
// seen, not removing entries from this map.
- // NOTE: The activity manager in its process needs to call in to
+ // NOTE: The activity and window managers need to call in to
// ActivityThread to do things like update resource configurations,
- // which means this lock gets held while the activity manager holds its
- // own lock. Thus you MUST NEVER call back into the activity manager
- // or anything that depends on it while holding this lock.
+ // which means this lock gets held while the activity and window managers
+ // holds their own lock. Thus you MUST NEVER call back into the activity manager
+ // or window manager or anything that depends on them while holding this lock.
final HashMap<String, WeakReference<LoadedApk>> mPackages
= new HashMap<String, WeakReference<LoadedApk>>();
final HashMap<String, WeakReference<LoadedApk>> mResourcePackages