diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-12 01:14:03 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-12 01:14:03 +0900 |
| commit | 196b200d0f19c41730db439c62db9b39e424f21f (patch) | |
| tree | 0723b900cea0816b6501f3933f768fb75453dd49 /cmd | |
| parent | 04e6bc3c5c99d6a99f17cfa5f69f34fe8941aee2 (diff) | |
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 <cat@gensokyo.uk>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/mbf/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
