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

Commit 430c2542 authored by Glenn Kasten's avatar Glenn Kasten
Browse files

Increase SchedulingPolicyService.PRIORITY_MAX to 3

This allows selected kernel workers to use 1, while audio preempts them
with 2 and 3.

Bug: 6461925
Change-Id: Ie132235f3027964749509f493fea44b48426c491
parent 9dc2cc53
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -33,7 +33,7 @@ public class SchedulingPolicyService extends ISchedulingPolicyService.Stub {


    // Minimum and maximum values allowed for requestPriority parameter prio
    // Minimum and maximum values allowed for requestPriority parameter prio
    private static final int PRIORITY_MIN = 1;
    private static final int PRIORITY_MIN = 1;
    private static final int PRIORITY_MAX = 2;
    private static final int PRIORITY_MAX = 3;


    public SchedulingPolicyService() {
    public SchedulingPolicyService() {
    }
    }