mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 08:26:17 +04:00
7 lines
80 B
Rust
7 lines
80 B
Rust
|
mod mutex;
|
||
|
mod monitor;
|
||
|
|
||
|
fn main() {
|
||
|
// mutex::main();
|
||
|
monitor::main();
|
||
|
}
|