Home
last modified time | relevance | path

Searched refs:exit_code (Results 1 – 4 of 4) sorted by relevance

/DragonOS-0.1.9/kernel/src/process/
Dc_adapter.rs75 unsafe extern "C" fn rs_process_do_exit(exit_code: usize) -> usize { in rs_process_do_exit()
79 ProcessManager::exit(exit_code); in rs_process_do_exit()
Dexit.rs159 kwo.ret_status = state.exit_code().unwrap() as i32; in do_wait()
Dmod.rs337 pub fn exit(exit_code: usize) -> ! { in exit()
343 .set_state(ProcessState::Exited(exit_code)); in exit()
507 pub fn exit_code(&self) -> Option<usize> { in exit_code() method
/DragonOS-0.1.9/kernel/src/syscall/
Dmod.rs309 let exit_code = args[0]; in handle() localVariable
310 Self::exit(exit_code) in handle()