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

Commit 7e377a0f authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add flag to force concurrent MessageQueue" into main

parents 85c5b7d8 d7fc74f5
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -149,6 +149,11 @@ public final class MessageQueue {
            return;
        }

        if (Flags.forceConcurrentMessageQueue()) {
            sIsProcessAllowedToUseConcurrent = true;
            return;
        }

        final String processName = Process.myProcessName();
        if (processName == null) {
            // Assume that this is a host-side test and avoid concurrent mode for now.
+8 −0
Original line number Diff line number Diff line
@@ -210,6 +210,14 @@ flag {
    bug: "370845648"
}

flag {
     name: "force_concurrent_message_queue"
     namespace: "system_performance"
     is_exported: true
     description: "Whether MessageQueue uses the new concurrent implementation"
     bug: "336880969"
}

flag {
    name: "get_private_space_settings"
    namespace: "profile_experiences"