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

Commit aec29a4d authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "libprocessgroup: fix task_profile_test to correctly detect cgroup v2"...

Merge "libprocessgroup: fix task_profile_test to correctly detect cgroup v2" am: 253f33aa am: 32aaf75a am: 33950882

Original change: https://android-review.googlesource.com/c/platform/system/core/+/2534619



Change-Id: I1583db34987048d4d2680e50b738aee7d8c8cd8e
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 4daec2d2 33950882
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ bool IsCgroupV2Mounted() {
    }
    struct mntent* mnt;
    while ((mnt = getmntent(mnts.get()))) {
        if (strcmp(mnt->mnt_fsname, "cgroup2") == 0) {
        if (strcmp(mnt->mnt_type, "cgroup2") == 0) {
            return true;
        }
    }