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

Commit d5be7b07 authored by Sandeep Patil's avatar Sandeep Patil Committed by android-build-merger
Browse files

Merge "Fix stack memory accounting for dumpsys" into qt-dev am: cfc26842

am: af3b9aa3

Change-Id: I1574c5a6d181abe51b3f9d642885c566b691dac6
parents cad8e213 af3b9aa3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ static void load_maps(int pid, stats_t* stats, bool* foundSwapPss)
        } else if (base::StartsWith(name, "[anon:libc_malloc]")) {
            which_heap = HEAP_NATIVE;
        } else if (base::StartsWith(name, "[stack")) {
            which_heap = HEAP_NATIVE;
            which_heap = HEAP_STACK;
        } else if (base::EndsWith(name, ".so")) {
            which_heap = HEAP_SO;
            is_swappable = true;