Home
last modified time | relevance | path

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

/DragonOS-0.1.2/user/libs/libc/src/
Dtime.h25 struct timespec struct
38 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); argument
Dtime.c13 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp) in nanosleep()
26 struct timespec ts = { in usleep()
/DragonOS-0.1.2/docs/userland/libc/apis/api-list/
Dtime.md11 ``struct timespec`` : 时间戳
24 ``int nanosleep(const struct timespec *rdtp,struct timespec *rmtp)``
/DragonOS-0.1.2/kernel/src/common/
Dtime.h25 struct timespec struct
38 extern int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); argument
/DragonOS-0.1.2/kernel/src/time/
Dsleep.h15 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
Dsleep.c27 int nanosleep(const struct timespec *rqtp, struct timespec *rmtp) in nanosleep()
80 struct timespec ts = { in usleep()
/DragonOS-0.1.2/kernel/src/syscall/
Dsyscall.c546 const struct timespec *rqtp = (const struct timespec *)regs->r8; in sys_nanosleep()
547 struct timespec *rmtp = (struct timespec *)regs->r9; in sys_nanosleep()