From 196b200d0f19c41730db439c62db9b39e424f21f Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 12 Mar 2026 01:14:03 +0900 Subject: container: expose priority and SCHED_OTHER policy The more explicit API removes the arbitrary limit preventing use of SCHED_OTHER (referred to as SCHED_NORMAL in the kernel). This change also exposes priority value to set. Signed-off-by: Ophestra --- cmd/mbf/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go index 72d90689..1a03757a 100644 --- a/cmd/mbf/main.go +++ b/cmd/mbf/main.go @@ -87,7 +87,7 @@ func main() { } if flagIdle { - pkg.SchedPolicy = std.SCHED_IDLE + pkg.SetSchedIdle = true } return -- cgit v1.3.1