Home
last modified time | relevance | path

Searched refs:fcntl (Results 1 – 6 of 6) sorted by relevance

/DragonOS-0.1.9/kernel/src/filesystem/vfs/
Dutils.rs6 use super::{fcntl::AtFlags, FileType, IndexNode, ROOT_INODE};
Dopen.rs10 fcntl::AtFlags,
Dmod.rs2 pub mod fcntl; module
Dsyscall.rs26 fcntl::{AtFlags, FcntlCommand, FD_CLOEXEC},
686 pub fn fcntl(fd: i32, cmd: FcntlCommand, arg: i32) -> Result<usize, SystemError> { in fcntl() method
/DragonOS-0.1.9/docs/community/ChangeLog/V0.1.x/
DV0.1.8.md60 - feature: 增加fcntl系统调用 (#323)
206 * 增加fcntl系统调用
/DragonOS-0.1.9/kernel/src/syscall/
Dmod.rs27 fcntl::FcntlCommand,
687 Self::fcntl(fd, cmd, arg) in handle()