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
2019-03-27 18:45:24 +08:00

10 lines
177 B
Rust

//! entrance to test the communication in processes with solving five philosophers problem
mod monitor;
mod mutex;
fn main() {
// mutex::main();
monitor::main();
}