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

Commit bcfdc1b0 authored by Yisroel Forta's avatar Yisroel Forta Committed by Android (Google) Code Review
Browse files

Merge "Remove app_start_info_isolated_process flag" into main

parents 1c057299 9fee971f
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -602,8 +602,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;
        }

@@ -976,8 +975,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"