diff options
author | Dianne Hackborn <hackbod@google.com> | 2010-09-24 11:16:23 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2010-09-24 13:11:55 -0700 |
commit | f123e49bf0708719b51a7064ae134c097abe4a54 (patch) | |
tree | 73c218afbbede522ca5c7d70b1399cf55609ca5d /services | |
parent | 6d8fae722cfb2833dd542b2a5e613582a9096fc6 (diff) | |
download | frameworks_base-f123e49bf0708719b51a7064ae134c097abe4a54.zip frameworks_base-f123e49bf0708719b51a7064ae134c097abe4a54.tar.gz frameworks_base-f123e49bf0708719b51a7064ae134c097abe4a54.tar.bz2 |
Some debugging support.
- New feature to "am monitor" to have it automatically launch
gdbserv for you when a crash/ANR happens, and tell you how to
run the client.
- Update dumpstate to match new location of binder debug logs
- Various commented out logs that are being used to track down
issues.
Change-Id: Ia5dd0cd2df983a1fc6be697642a4590aa02a26a5
Diffstat (limited to 'services')
-rw-r--r-- | services/java/com/android/server/WindowManagerService.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/services/java/com/android/server/WindowManagerService.java b/services/java/com/android/server/WindowManagerService.java index d7a1ac2..c637274 100644 --- a/services/java/com/android/server/WindowManagerService.java +++ b/services/java/com/android/server/WindowManagerService.java @@ -5679,9 +5679,12 @@ public class WindowManagerService extends IWindowManager.Stub int requestedWidth, int requestedHeight, int viewFlags, boolean insetsPending, Rect outFrame, Rect outContentInsets, Rect outVisibleInsets, Configuration outConfig, Surface outSurface) { - return relayoutWindow(this, window, attrs, + //Log.d(TAG, ">>>>>> ENTERED relayout from " + Binder.getCallingPid()); + int res = relayoutWindow(this, window, attrs, requestedWidth, requestedHeight, viewFlags, insetsPending, outFrame, outContentInsets, outVisibleInsets, outConfig, outSurface); + //Log.d(TAG, "<<<<<< EXITING relayout to " + Binder.getCallingPid()); + return res; } public void setTransparentRegion(IWindow window, Region region) { |