Home
last modified time | relevance | path

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

/DragonOS-0.1.8/docs/userland/libc/apis/
Dindex.rst10 api-list/fcntl
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Dfcntl.md1 # fcntl.h
/DragonOS-0.1.8/docs/community/ChangeLog/V0.1.x/
DV0.1.8.md60 - feature: 增加fcntl系统调用 (#323)
206 * 增加fcntl系统调用
/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dsyscall.rs15 fcntl::{FcntlCommand, FD_CLOEXEC},
459 pub fn fcntl(fd: i32, cmd: FcntlCommand, arg: i32) -> Result<usize, SystemError> { in fcntl() method
Dmod.rs4 pub mod fcntl; module
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs11 fcntl::FcntlCommand,
976 Self::fcntl(fd, cmd, arg) in handle()