Home
last modified time | relevance | path

Searched refs:timespec (Results 1 – 7 of 7) sorted by relevance

/DragonOS-0.1.7/docs/userland/libc/apis/api-list/
Dtime.md11 ``struct timespec`` : 时间戳
24 ``int nanosleep(const struct timespec *rdtp,struct timespec *rmtp)``
/DragonOS-0.1.7/user/libs/libc/src/include/export/
Dtime.h29 struct timespec struct
42 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); argument
/DragonOS-0.1.7/user/libs/libc/src/
Dtime.c13 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp) in nanosleep()
26 struct timespec ts = { in usleep()
/DragonOS-0.1.7/kernel/src/common/
Dtime.h24 struct timespec struct
37 extern int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); argument
/DragonOS-0.1.7/kernel/src/time/
Dsleep.h15 int rs_nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
Dsleep.rs11 include::bindings::bindings::{timespec, useconds_t, Cpu_tsc_freq},
94 pub extern "C" fn rs_nanosleep(sleep_time: *const timespec, rm_time: *mut timespec) -> i32 { in rs_nanosleep() argument
/DragonOS-0.1.7/kernel/src/syscall/
Dsyscall.c386 const struct timespec *rqtp = (const struct timespec *)regs->r8; in sys_nanosleep()
387 struct timespec *rmtp = (struct timespec *)regs->r9; in sys_nanosleep()