Skip to main content

kernel/state/subcats/
sched.rs

1// SPDX-License-Identifier: GPL-3.0-only
2//! Process scheduler state placeholder for [`KState`].
3//!
4//! Authors: MarioS271
5
6/// Holds scheduler runqueues and tracks the current process on each CPU.
7pub struct Sched {
8
9}