summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-10-28 13:18:39 -0400
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-10-28 13:18:39 -0400
commitfb872d1af3c775114ac7d241eb1924a9aafbb9df (patch)
treeb57bb8efa8dd1f7c46f82efec7f2727e47480918 /services
parent898897338dfd62a268a89fb55ee900a9bd5a683f (diff)
parentd4d04def2cad706894098f6e0c779b173e95892c (diff)
downloadframeworks_base-fb872d1af3c775114ac7d241eb1924a9aafbb9df.zip
frameworks_base-fb872d1af3c775114ac7d241eb1924a9aafbb9df.tar.gz
frameworks_base-fb872d1af3c775114ac7d241eb1924a9aafbb9df.tar.bz2
Merge change Id4d04def into eclair
* changes: Fix a race that kept the locale picker from working under heavy CPU load.
Diffstat (limited to 'services')
-rw-r--r--services/java/com/android/server/am/ActivityManagerService.java32
1 files changed, 25 insertions, 7 deletions
diff --git a/services/java/com/android/server/am/ActivityManagerService.java b/services/java/com/android/server/am/ActivityManagerService.java
index ad1926e..56270f4 100644
--- a/services/java/com/android/server/am/ActivityManagerService.java
+++ b/services/java/com/android/server/am/ActivityManagerService.java
@@ -2705,13 +2705,31 @@ public final class ActivityManagerService extends ActivityManagerNative implemen
// Have the window manager re-evaluate the orientation of
// the screen based on the new activity order.
- Configuration config = mWindowManager.updateOrientationFromAppTokens(
- mConfiguration,
- next.mayFreezeScreenLocked(next.app) ? next : null);
- if (config != null) {
- next.frozenBeforeDestroy = true;
- }
- if (!updateConfigurationLocked(config, next)) {
+ boolean updated;
+ synchronized (this) {
+ Configuration config = mWindowManager.updateOrientationFromAppTokens(
+ mConfiguration,
+ next.mayFreezeScreenLocked(next.app) ? next : null);
+ if (config != null) {
+ /*
+ * Explicitly restore the locale to the one from the
+ * old configuration, since the one that comes back from
+ * the window manager has the default (boot) locale.
+ *
+ * It looks like previously the locale picker only worked
+ * by coincidence: usually it would do its setting of
+ * the locale after the activity transition, so it didn't
+ * matter that this lost it. With the synchronized
+ * block now keeping them from happening at the same time,
+ * this one always would happen second and undo what the
+ * locale picker had just done.
+ */
+ config.locale = mConfiguration.locale;
+ next.frozenBeforeDestroy = true;
+ }
+ updated = updateConfigurationLocked(config, next);
+ }
+ if (!updated) {
// The configuration update wasn't able to keep the existing
// instance of the activity, and instead started a new one.
// We should be all done, but let's just make sure our activity