diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-04-07 15:11:57 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-04-07 18:26:15 -0700 |
commit | e17aeb31030cfeed339a39a107912ad5e9178390 (patch) | |
tree | e0773ea106c5504e2ef107a91f5871827cd76b75 /core/java/android/app/ApplicationThreadNative.java | |
parent | 097786507b07ff7137b305b5cf71b5ecbc6b029e (diff) | |
download | frameworks_base-e17aeb31030cfeed339a39a107912ad5e9178390.zip frameworks_base-e17aeb31030cfeed339a39a107912ad5e9178390.tar.gz frameworks_base-e17aeb31030cfeed339a39a107912ad5e9178390.tar.bz2 |
Improve activity manager debug dumps.
Activity manager now does all dump requests into apps
asynchronously, so it can nicely timeout if there is an
app problem. Also lots of general cleanup of the am
dump output.
Change-Id: Id0dbccffb217315aeb85c964e379833e6aa3f5af
Diffstat (limited to 'core/java/android/app/ApplicationThreadNative.java')
-rw-r--r-- | core/java/android/app/ApplicationThreadNative.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/app/ApplicationThreadNative.java b/core/java/android/app/ApplicationThreadNative.java index aa26b04..a82234e 100644 --- a/core/java/android/app/ApplicationThreadNative.java +++ b/core/java/android/app/ApplicationThreadNative.java @@ -822,7 +822,7 @@ class ApplicationThreadProxy implements IApplicationThread { data.writeFileDescriptor(fd); data.writeStrongBinder(token); data.writeStringArray(args); - mRemote.transact(DUMP_SERVICE_TRANSACTION, data, null, 0); + mRemote.transact(DUMP_SERVICE_TRANSACTION, data, null, IBinder.FLAG_ONEWAY); data.recycle(); } @@ -944,7 +944,7 @@ class ApplicationThreadProxy implements IApplicationThread { data.writeStrongBinder(token); data.writeString(prefix); data.writeStringArray(args); - mRemote.transact(DUMP_ACTIVITY_TRANSACTION, data, null, 0); + mRemote.transact(DUMP_ACTIVITY_TRANSACTION, data, null, IBinder.FLAG_ONEWAY); data.recycle(); } |