Home
last modified time | relevance | path

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

/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.6.md45 - syscall: 新增dup,dup2系统调用 (#224)
167 Add dup,dup2 (#224)
169 * dup,dup2
/DragonOS/kernel/src/syscall/
H A Dmod.rs434 Self::dup2(oldfd, newfd) in handle()
/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs1080 pub fn dup2(oldfd: i32, newfd: i32) -> Result<usize, SystemError> { in dup2() method