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

10 lines
177 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 monitor;
2019-03-27 14:35:08 +04:00
mod mutex;
fn main() {
2019-03-27 14:35:08 +04:00
// mutex::main();
monitor::main();
2019-03-27 14:35:08 +04:00
}