Home
last modified time | relevance | path

Searched refs:who (Results 1 – 3 of 3) sorted by relevance

/DragonOS/kernel/src/process/
H A Dsyscall.rs473 pub fn get_rusage(who: i32, rusage: *mut RUsage) -> Result<usize, SystemError> { in get_rusage()
474 let who = RUsageWho::try_from(who)?; in get_rusage() localVariable
477 let rusage = pcb.get_rusage(who).ok_or(SystemError::EINVAL)?; in get_rusage()
/DragonOS/
H A DLICENSE122 entire whole, and thus to each and every part regardless of who wrote it.
176 However, parties who have received copies, or rights, from you under
206 all those who receive copies directly or indirectly through you, then
231 original copyright holder who places the Program under this License
/DragonOS/kernel/src/syscall/
H A Dmod.rs945 let who = args[0] as c_int; in handle() localVariable
947 Self::get_rusage(who, rusage) in handle()