Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a122ed81 authored by Jing Ji's avatar Jing Ji
Browse files

Fix the value of RSS total in meminfo dump

Bug: 171015766
Test: Manual - adb shell dumpsys meminfo com.android.systemui,
      verify the correctness of the RSS total
Change-Id: I21c7198cdad773adfced4b66257b9e01f1cffad2
parent c1271a4f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2791,7 +2791,7 @@ public final class ActivityThread extends ClientTransactionHandler {
                        memInfo.getTotalPrivateDirty(),
                        memInfo.getTotalPrivateClean(),
                        memInfo.hasSwappedOutPss ? memInfo.getTotalSwappedOutPss() :
                        memInfo.getTotalSwappedOut(), memInfo.getTotalPss(),
                        memInfo.getTotalSwappedOut(), memInfo.getTotalRss(),
                        nativeMax+dalvikMax,
                        nativeAllocated+dalvikAllocated, nativeFree+dalvikFree);
            }