Merge commit '390022b23b2c53119ff0bde4b14d14728bc48bb2' into froyo-plus-aosp * commit '390022b23b2c53119ff0bde4b14d14728bc48bb2': Fix issue #2528537: android.os.DeadObjectException
This commit is contained in:
@@ -1369,7 +1369,7 @@ public final class ActivityManagerService extends ActivityManagerNative implemen
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
procs = service.mLruProcesses;
|
procs = new ArrayList<ProcessRecord>(service.mLruProcesses);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dumpApplicationMemoryUsage(fd, pw, procs, " ", args);
|
dumpApplicationMemoryUsage(fd, pw, procs, " ", args);
|
||||||
@@ -10202,7 +10202,7 @@ public final class ActivityManagerService extends ActivityManagerNative implemen
|
|||||||
return numPers;
|
return numPers;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final void dumpApplicationMemoryUsage(FileDescriptor fd,
|
static final void dumpApplicationMemoryUsage(FileDescriptor fd,
|
||||||
PrintWriter pw, List list, String prefix, String[] args) {
|
PrintWriter pw, List list, String prefix, String[] args) {
|
||||||
final boolean isCheckinRequest = scanArgs(args, "--checkin");
|
final boolean isCheckinRequest = scanArgs(args, "--checkin");
|
||||||
long uptime = SystemClock.uptimeMillis();
|
long uptime = SystemClock.uptimeMillis();
|
||||||
|
|||||||
Reference in New Issue
Block a user