diff options
| author | 2015-04-04 16:48:47 +0000 | |
|---|---|---|
| committer | 2015-04-04 16:48:47 +0000 | |
| commit | 950fbdff24fc1a76089d14314bc9d66fb346502c (patch) | |
| tree | 01a9994704a658a7564eea6fb85ee22a92e0e4d1 | |
| parent | 5281521fcf212e310a22874b42e51eb4923a513a (diff) | |
| parent | 6491923d047be80e073941efb70c4c46c81d1410 (diff) | |
am 6491923d: am 972099c7: am 1d359daa: Merge "Remove the window whose client process has died or become zombie"
* commit '6491923d047be80e073941efb70c4c46c81d1410':
Remove the window whose client process has died or become zombie
| -rw-r--r-- | services/core/java/com/android/server/wm/WindowState.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/wm/WindowState.java b/services/core/java/com/android/server/wm/WindowState.java index f94ed776e3d8..db3268d14fe0 100644 --- a/services/core/java/com/android/server/wm/WindowState.java +++ b/services/core/java/com/android/server/wm/WindowState.java @@ -1490,6 +1490,11 @@ final class WindowState implements WindowManagerPolicy.WindowState { mOrientationChanging = false; mLastFreezeDuration = (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime); + // We are assuming the hosting process is dead or in a zombie state. + Slog.w(TAG, "Failed to report 'resized' to the client of " + this + + ", removing this window."); + mService.mPendingRemove.add(this); + mService.requestTraversalLocked(); } } |