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

Commit 9fee971f authored by Yisroel Forta's avatar Yisroel Forta
Browse files

Remove app_start_info_isolated_process flag

Bug: 409611816
Test: presubmit
Flag: EXEMPT - flag cleanup
Change-Id: I4e8ea4ca3c5b35d48002d6ec817225a033a8f7ef
parent 90f9298b
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -606,8 +606,7 @@ public final class AppStartInfoTracker {

        // Isolated process starts won't be reasonably accessible if stored by their uid, don't
        // store them.
        if (com.android.server.am.Flags.appStartInfoIsolatedProcess()
                && UserHandle.isIsolated(uid)) {
        if (UserHandle.isIsolated(uid)) {
            return null;
        }

@@ -980,8 +979,7 @@ public final class AppStartInfoTracker {
                    // This is expected only as a one time mitigation, records added after this flag
                    // is enabled should always return false for isIsolated and thereby always
                    // continue on.
                    if (com.android.server.am.Flags.appStartInfoIsolatedProcess()
                            && UserHandle.isIsolated(uid)) {
                    if (UserHandle.isIsolated(uid)) {
                        break;
                    }

+0 −10
Original line number Diff line number Diff line
@@ -129,16 +129,6 @@ flag {
    }
}

flag {
    name: "app_start_info_isolated_process"
    namespace: "system_performance"
    description: "Adjust handling of isolated process records to be discarded."
    bug: "374032823"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "perceptible_tasks"
    namespace: "system_performance"