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

Commit 253f33aa authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents 6c0ff3bd d09713fe
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;
        }
    }