ktstr 0.5.2

Test harness for Linux process schedulers
1
2
3
4
5
6
7
8
9
10
11
// Relative paths are ambiguous between "sibling file" and "discover-by-
// name" intent. The macro rejects with a hint to use `binary = "..."`
// for discovery or an absolute path for explicit files.
use ktstr::declare_scheduler;

declare_scheduler!(BINARY_PATH_RELATIVE, {
    name = "binary_path_relative",
    binary_path = "scx_relative_sched",
});

fn main() {}