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

Commit 01495af0 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11672362 from f28bdad9 to 24Q3-release

Change-Id: I7e78b259fae98ff19a097e84764a2218153c414f
parents 6d35a4f9 f28bdad9
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
aconfig_declarations {
    name: "service-deviceidle.flags-aconfig",
    package: "com.android.server.deviceidle",
    container: "system",
    srcs: [
        "device_idle.aconfig",
    ],
@@ -17,6 +18,7 @@ java_aconfig_library {
aconfig_declarations {
    name: "service-job.flags-aconfig",
    package: "com.android.server.job",
    container: "system",
    srcs: [
        "job.aconfig",
    ],
@@ -32,6 +34,7 @@ java_aconfig_library {
aconfig_declarations {
    name: "alarm_flags",
    package: "com.android.server.alarm",
    container: "system",
    srcs: ["alarm.aconfig"],
}

+1 −0
Original line number Diff line number Diff line
package: "com.android.server.alarm"
container: "system"

flag {
    name: "use_frozen_state_to_drop_listener_alarms"
+1 −0
Original line number Diff line number Diff line
package: "com.android.server.deviceidle"
container: "system"

flag {
    name: "disable_wakelocks_in_light_idle"
+1 −0
Original line number Diff line number Diff line
package: "com.android.server.job"
container: "system"

flag {
    name: "batch_active_bucket_jobs"
+11 −0
Original line number Diff line number Diff line
@@ -1737,6 +1737,17 @@ class JobConcurrencyManager {
                    continue;
                }

                if (!nextPending.isReady()) {
                    // This could happen when the job count reached its quota, the constrains
                    // for the job has been updated but hasn't been removed from the pending
                    // queue yet.
                    if (DEBUG) {
                        Slog.w(TAG, "Pending+not ready job: " + nextPending);
                    }
                    pendingJobQueue.remove(nextPending);
                    continue;
                }

                if (DEBUG && isSimilarJobRunningLocked(nextPending)) {
                    Slog.w(TAG, "Already running similar job to: " + nextPending);
                }
Loading