Home
last modified time | relevance | path

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

/DragonOS-0.1.8/user/libs/libc/src/
Dtime.c13 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp) in nanosleep() function
31 return nanosleep(&ts, NULL); in usleep()
/DragonOS-0.1.8/kernel/src/time/
Dsyscall.rs8 time::{sleep::nanosleep, TimeSpec},
49 pub fn nanosleep( in nanosleep() method
61 let r: Result<usize, SystemError> = nanosleep(slt_spec).map(|slt_spec| { in nanosleep()
Dsleep.rs24 pub fn nanosleep(sleep_time: TimeSpec) -> Result<TimeSpec, SystemError> { in nanosleep() function
74 match nanosleep(sleep_time) { in usleep()
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Dtime.md24 ``int nanosleep(const struct timespec *rdtp,struct timespec *rmtp)``
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Dtime.h42 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs647 Self::nanosleep(req, rem) in handle()