Add new SCX scheds

This commit is contained in:
ferreo 2025-03-12 22:20:48 +00:00
parent 23520995bf
commit 387ee48881
3 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,10 @@
falcond (1.1.2-101pika1) pika; urgency=low
* Add new scx sched options
-- ferreo <ferreo@pika-os.com> Sun, 12 Jan 2025 13:48:00 +0300
falcond (1.1.1-101pika1) pika; urgency=low
* Update to support latest zig

View File

@ -49,6 +49,8 @@ pub const ScxScheduler = enum {
if (std.mem.eql(u8, str, "scx_simple")) return .simple;
if (std.mem.eql(u8, str, "scx_userland")) return .userland;
if (std.mem.eql(u8, str, "scx_vder")) return .vder;
if (std.mem.eql(u8, str, "scx_p2dq")) return .p2dq;
if (std.mem.eql(u8, str, "scx_tickless")) return .tickless;
return error.InvalidValue;
}

View File

@ -2,7 +2,7 @@
set -e
VERSION="1.1.1"
VERSION="1.1.2"
source ./pika-build-config.sh