mirror of
https://github.com/JakeHillion/scx.git
synced 2024-12-03 22:37:11 +00:00
ed879bae28
Pass the enqueue flags to the user-space scheduler through the QueuedTask struct. These flags allow the user-space scheduler to make more informed scheduling decisions. Also bump up scx_rustland_core minor version to reflect the new API (we are not breaking the old API, so we don't need to bump the major version in this case). Signed-off-by: Andrea Righi <andrea.righi@linux.dev>
24 lines
718 B
TOML
24 lines
718 B
TOML
[package]
|
|
name = "scx_rlfifo"
|
|
version = "1.0.4"
|
|
authors = ["Andrea Righi <andrea.righi@linux.dev>"]
|
|
edition = "2021"
|
|
description = "A simple FIFO scheduler in Rust that runs in user-space"
|
|
license = "GPL-2.0-only"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
plain = "0.2.3"
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
|
libbpf-rs = "0.24.1"
|
|
libc = "0.2.137"
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.4" }
|
|
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.1.1" }
|
|
|
|
[build-dependencies]
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.4" }
|
|
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.1.1" }
|
|
|
|
[features]
|
|
enable_backtrace = []
|