search for: __clock_nanosleep

Displaying 2 results from an estimated 2 matches for "__clock_nanosleep".

2023 Jan 14
1
[klibc:time64] time: Use 64-bit time types on all architectures
...l *); clock_t times(struct tms *); int gettimeofday::__gettimeofday(void *, struct timezone *); int settimeofday::__settimeofday(const void *, const struct timezone *); -int clock_gettime(clockid_t, struct timespec *); -int clock_settime(clockid_t, const struct timespec *); -int clock_nanosleep::__clock_nanosleep(clockid_t, int, const struct timespec *, struct timespec *); +<32> int clock_gettime64::clock_gettime(clockid_t, struct timespec *); +<64> int clock_gettime(clockid_t, struct timespec *); +<32> int clock_settime64::clock_settime(clockid_t, const struct timespec *); +<64> int...
2023 Jan 26
0
[klibc:time64] time: Use clock_* system calls for time-of-day and sleep
...uct timespec *, struct timespec *); +int gettimeofday::__gettimeofday(void *, struct timezone *); +int settimeofday::__settimeofday(const void *, const struct timezone *); +int clock_gettime(clockid_t, struct timespec *); +int clock_settime(clockid_t, const struct timespec *); +int clock_nanosleep::__clock_nanosleep(clockid_t, int, const struct timespec *, struct timespec *); <?> int pause(); /* diff --git a/usr/klibc/clock_nanosleep.c b/usr/klibc/clock_nanosleep.c new file mode 100644 index 00000000..b4fd1e2c --- /dev/null +++ b/usr/klibc/clock_nanosleep.c @@ -0,0 +1,17 @@ +#include <time.h> +...