Home
last modified time | relevance | path

Searched refs:syscall (Results 1 – 25 of 88) sorted by relevance

1234

/DragonOS-0.1.8/kernel/src/syscall/
DMakefile5 all: syscall.o
7 syscall.o: syscall.c
8 $(CC) $(CFLAGS) -c syscall.c -o syscall.o
/DragonOS-0.1.8/user/libs/libsystem/
DMakefile5 libsystem: syscall.o
7 syscall.o: syscall.c
8 $(CC) $(CFLAGS) -c syscall.c -o syscall.o
/DragonOS-0.1.8/kernel/src/ipc/
Dmod.rs4 pub mod syscall; module
Dpipe.rs10 syscall::SystemError,
81 ) -> Result<usize, crate::syscall::SystemError> { in read_at()
160 ) -> Result<usize, crate::syscall::SystemError> { in write_at()
205 fn poll(&self) -> Result<PollStatus, crate::syscall::SystemError> { in poll()
/DragonOS-0.1.8/kernel/src/sched/
Dmod.rs4 pub mod syscall; module
Dsyscall.rs4 syscall::{Syscall, SystemError},
/DragonOS-0.1.8/kernel/src/arch/x86_64/
Dmod.rs13 pub mod syscall; module
/DragonOS-0.1.8/kernel/src/smp/
Dmod.rs5 syscall::SystemError,
/DragonOS-0.1.8/kernel/src/driver/net/
Dmod.rs7 use crate::{libs::spinlock::SpinLock, syscall::SystemError};
/DragonOS-0.1.8/kernel/src/process/
Dmod.rs22 pub mod syscall; module
Dsyscall.rs6 syscall::{Syscall, SystemError},
Dc_adapter.rs8 syscall::SystemError,
/DragonOS-0.1.8/kernel/src/filesystem/sysfs/
Ddevices.rs2 use crate::{filesystem::vfs::IndexNode, syscall::SystemError};
Dfs.rs2 use crate::{filesystem::vfs::IndexNode, syscall::SystemError};
Dclass.rs2 use crate::{filesystem::vfs::IndexNode, syscall::SystemError};
Dbus.rs2 use crate::{filesystem::vfs::IndexNode, kdebug, syscall::SystemError};
/DragonOS-0.1.8/docs/kernel/ipc/
Dsignal.md47 │ Return from syscall...│ │
/DragonOS-0.1.8/kernel/src/libs/
Dsemaphore.rs3 use crate::{arch::asm::current::current_pcb, kdebug, syscall::SystemError};
/DragonOS-0.1.8/kernel/src/time/
Dsyscall.rs7 syscall::{Syscall, SystemError},
Dsleep.rs9 syscall::SystemError,
/DragonOS-0.1.8/kernel/src/
Dlib.rs39 mod syscall; module
/DragonOS-0.1.8/kernel/src/driver/timers/rtc/
Drtc.rs5 syscall::SystemError,
/DragonOS-0.1.8/kernel/src/net/
Dmod.rs8 use crate::{driver::net::NetDriver, kwarn, libs::rwlock::RwLock, syscall::SystemError};
16 pub mod syscall; module
/DragonOS-0.1.8/docs/kernel/core_api/
Dcasting.md16 SystemError枚举类型使用了这种方式,您可以在`kernel/src/syscall/mod.rs`中找到它的用法。
/DragonOS-0.1.8/kernel/src/driver/uart/
Duart.rs16 syscall::SystemError,
225 fn open(&self, _file: Arc<dyn IndexNode>) -> Result<(), crate::syscall::SystemError> { in open()
229 fn close(&self, _file: Arc<dyn IndexNode>) -> Result<(), crate::syscall::SystemError> { in close()

1234