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

9 lines
172 B
Rust
Raw Normal View History

2018-10-05 07:08:50 +04:00
//! entrance to test the communication in processes with solving five philosophers problem
mod mutex;
mod monitor;
fn main() {
// mutex::main();
monitor::main();
}