Home
last modified time | relevance | path

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

/DragonOS/kernel/src/filesystem/vfs/
H A Dutils.rs10 use super::{fcntl::AtFlags, FileType, IndexNode, ROOT_INODE};
H A Dopen.rs6 fcntl::AtFlags,
H A Dcore.rs21 fcntl::AtFlags,
H A Dmod.rs2 pub mod fcntl; module
H A Dsyscall.rs25 fcntl::{AtFlags, FcntlCommand, FD_CLOEXEC},
1133 pub fn fcntl(fd: i32, cmd: FcntlCommand, arg: i32) -> Result<usize, SystemError> { in fcntl() method
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.8.md60 - feature: 增加fcntl系统调用 (#323)
206 * 增加fcntl系统调用
H A DV0.1.10.md72 - fix(fs): socket统一改用`GlobalSocketHandle`,并且修复fcntl SETFD的错误 (#730)
465 socket统一改用`GlobalSocketHandle`,并且修复fcntl SETFD的错误 (#730)
467 * socket统一改用`GlobalSocketHandle`,并且修复fcntl SETFD的错误
/DragonOS/kernel/src/syscall/
H A Dmod.rs30 fcntl::{AtFlags, FcntlCommand},
648 Self::fcntl(fd, cmd, arg) in handle()