mirror of
https://github.com/sched-ext/scx.git
synced 2024-11-24 20:00:22 +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>
32 lines
1.4 KiB
TOML
32 lines
1.4 KiB
TOML
[package]
|
|
name = "scx_rustland"
|
|
version = "1.0.4"
|
|
authors = ["Andrea Righi <andrea.righi@linux.dev>"]
|
|
edition = "2021"
|
|
description = "A BPF component (dispatcher) that implements the low level sched-ext functionalities and a user-space counterpart (scheduler), written in Rust, that implements the actual scheduling policy. This is used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
|
|
license = "GPL-2.0-only"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
plain = "0.2.3"
|
|
clap = { version = "4.1", features = ["derive", "env", "unicode", "wrap_help"] }
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
|
fb_procfs = "0.7"
|
|
libbpf-rs = "0.24.1"
|
|
libc = "0.2.137"
|
|
log = "0.4.17"
|
|
ordered-float = "3.4.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.4" }
|
|
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.4" }
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.4" }
|
|
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.1.1" }
|
|
simplelog = "0.12"
|
|
|
|
[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 = []
|