mirror of
https://github.com/LearningOS/lab0-0-setup-env-run-os1-d0zingcat.git
synced 2026-06-07 15:10:23 +00:00
7 lines
159 B
Rust
7 lines
159 B
Rust
use crate::batch::run_next_app;
|
|
|
|
pub fn sys_exit(exit_code: i32) -> ! {
|
|
info!("[kernel] Application exited with code {}", exit_code);
|
|
run_next_app()
|
|
}
|