Home
last modified time | relevance | path

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

/DragonOS/kernel/src/process/
H A Dexit.rs114 kwo.no_task_error = Some(SystemError::ECHILD); in do_wait()
115 let child_pcb = ProcessManager::find(kwo.pid).ok_or(SystemError::ECHILD); in do_wait()
157 let pcb = ProcessManager::find(*pid).ok_or(SystemError::ECHILD)?; in do_wait()
H A Dmod.rs936 _ => Err(SystemError::ECHILD), in adopt_childen()
/DragonOS/kernel/src/common/
H A Derrno.h21 #define ECHILD 10 /* 没有子进程 No child processes. */ macro
/DragonOS/kernel/crates/system_error/src/
H A Dlib.rs30 ECHILD = 10, enumerator