Files
lab0-0-setup-env-run-os1-d0…/os2-ref/src/syscall/process.rs
github-classroom[bot] 4dfe17a1b1 Initial commit
2022-06-29 12:24:12 +00:00

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()
}