kos 0.1.0

The K-Scale Operating System
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Defines state variables that are passed between the runner loop and
 * the calling process.
 */

#[derive(Debug)]
pub struct State {}

impl State {
    pub fn new() -> Self {
        State {}
    }
}