Files @ 1aef293674a6
Branch filter:

Location: CSY/reowolf/src/runtime2/scheduler.rs

1aef293674a6 193 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
mh
experimenting with multithreaded scheduler sync primitives
use std::sync::Condvar;

use super::global_store::GlobalStore;

struct Scheduler<'g> {
    global: &'g GlobalStore,
}

impl<'g> Scheduler<'g> {
    pub fn new(store: &'g GlobalStore) {

    }
}