mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 08:26:17 +04:00
10 lines
177 B
Rust
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();
|
|
}
|