1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-23 08:26:17 +04:00
rCore/crate/sync/src/main.rs

7 lines
80 B
Rust
Raw Normal View History

mod mutex;
mod monitor;
fn main() {
// mutex::main();
monitor::main();
}