Crates.io | scx_rlfifo |
lib.rs | scx_rlfifo |
version | |
source | src |
created_at | 2024-06-03 20:30:23.559281 |
updated_at | 2025-02-05 16:09:36.056307 |
description | A simple FIFO scheduler in Rust that runs in user-space |
homepage | |
repository | |
max_upload_size | |
id | 1260495 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
This is a single user-defined scheduler used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. Read more about sched_ext.
scx_rlfifo is a simple FIFO scheduler runs in user-space, based on the scx_rustland_core framework.
This scheduler is provided as a simple template that can be used as a baseline to test more complex scheduling policies.
Definitely not. Using this scheduler in a production environment is not recommended, unless there are specific requirements that necessitate a basic FIFO scheduling approach. Even then, it's still recommended to use the kernel's SCHED_FIFO real-time class.