2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMESPEC_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMESPEC_H_
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
2022-08-13 20:11:56 +00:00
|
|
|
COSMOPOLITAN_C_START_
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
struct timespec {
|
|
|
|
int64_t tv_sec;
|
|
|
|
int64_t tv_nsec; /* nanoseconds */
|
|
|
|
};
|
|
|
|
|
2022-08-13 20:11:56 +00:00
|
|
|
int clock_getres(int, struct timespec *);
|
|
|
|
int clock_gettime(int, struct timespec *);
|
2023-06-18 11:02:01 +00:00
|
|
|
int clock_settime(int, const struct timespec *);
|
2022-10-05 13:37:15 +00:00
|
|
|
int clock_nanosleep(int, int, const struct timespec *, struct timespec *);
|
2022-08-13 20:11:56 +00:00
|
|
|
int futimens(int, const struct timespec[2]);
|
|
|
|
int nanosleep(const struct timespec *, struct timespec *);
|
|
|
|
int utimensat(int, const char *, const struct timespec[2], int);
|
2023-06-15 20:50:42 +00:00
|
|
|
int timespec_getres(struct timespec *, int);
|
|
|
|
int timespec_get(struct timespec *, int);
|
2023-06-05 07:37:25 +00:00
|
|
|
|
2023-08-14 03:31:27 +00:00
|
|
|
#ifdef _COSMO_SOURCE
|
2023-06-05 07:37:25 +00:00
|
|
|
/* cosmopolitan libc's non-posix timespec library
|
|
|
|
removed by default due to emacs codebase clash */
|
|
|
|
#define timespec_zero ((struct timespec){0})
|
|
|
|
#define timespec_max ((struct timespec){0x7fffffffffffffff, 999999999})
|
2022-11-06 02:49:41 +00:00
|
|
|
int timespec_cmp(struct timespec, struct timespec) pureconst;
|
|
|
|
int64_t timespec_tomicros(struct timespec) pureconst;
|
|
|
|
int64_t timespec_tomillis(struct timespec) pureconst;
|
|
|
|
int64_t timespec_tonanos(struct timespec) pureconst;
|
|
|
|
struct timespec timespec_add(struct timespec, struct timespec) pureconst;
|
|
|
|
struct timespec timespec_fromnanos(int64_t) pureconst;
|
|
|
|
struct timespec timespec_frommicros(int64_t) pureconst;
|
|
|
|
struct timespec timespec_frommillis(int64_t) pureconst;
|
|
|
|
struct timespec timespec_real(void);
|
|
|
|
struct timespec timespec_mono(void);
|
|
|
|
struct timespec timespec_sleep(struct timespec);
|
|
|
|
int timespec_sleep_until(struct timespec);
|
|
|
|
struct timespec timespec_sub(struct timespec, struct timespec) pureconst;
|
2023-06-15 20:50:42 +00:00
|
|
|
struct timespec timespec_subz(struct timespec, struct timespec) pureconst;
|
2023-06-10 01:02:06 +00:00
|
|
|
int sys_futex(int *, int, int, const struct timespec *, int *);
|
2023-08-08 03:22:49 +00:00
|
|
|
static inline struct timespec timespec_fromseconds(int64_t __x) {
|
|
|
|
return (struct timespec){__x};
|
|
|
|
}
|
2023-06-15 20:50:42 +00:00
|
|
|
static inline bool timespec_iszero(struct timespec __ts) {
|
|
|
|
return !(__ts.tv_sec | __ts.tv_nsec);
|
|
|
|
}
|
|
|
|
static inline bool timespec_isvalid(struct timespec __ts) {
|
|
|
|
return __ts.tv_sec >= 0 && __ts.tv_nsec < 1000000000ull;
|
|
|
|
}
|
2023-08-14 03:31:27 +00:00
|
|
|
#endif /* _COSMO_SOURCE */
|
2022-06-09 03:01:28 +00:00
|
|
|
|
2022-08-13 20:11:56 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
2020-06-15 14:18:57 +00:00
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMESPEC_H_ */
|