1
0
Fork 0
forked from AbleOS/ableos

fix the dumb

This commit is contained in:
MunirG05 2023-07-11 13:32:40 +05:30
parent 7a00dff4b9
commit 2af7684532

View file

@ -18,9 +18,7 @@ impl Scheduler<'_> {
pub fn new() -> Self { pub fn new() -> Self {
Self { Self {
data: VecDeque::new(), data: VecDeque::new(),
tick_callback: None,
last_timer_count: 0,
tick_limit: 64,
} }
} }
pub fn new_process(&mut self, program: Vec<u8>) { pub fn new_process(&mut self, program: Vec<u8>) {
@ -50,3 +48,4 @@ impl Scheduler<'_> {
self.data.push_back(prog); self.data.push_back(prog);
} }
} }
}