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 *);
|
|
|
|
int futimens(int, const struct timespec[2]);
|
|
|
|
int nanosleep(const struct timespec *, struct timespec *);
|
2022-06-13 18:02:13 +00:00
|
|
|
int sys_futex(int *, int, int, const struct timespec *, int *);
|
2022-08-13 20:11:56 +00:00
|
|
|
int utimensat(int, const char *, const struct timespec[2], int);
|
2022-09-06 04:43:49 +00:00
|
|
|
int timespec_get(struct timespec *, int);
|
|
|
|
int timespec_getres(struct timespec *, int);
|
2022-08-13 20:11:56 +00:00
|
|
|
|
|
|
|
bool _timespec_eq(struct timespec, struct timespec) pureconst;
|
|
|
|
bool _timespec_gte(struct timespec, struct timespec) pureconst;
|
2022-08-06 02:24:05 +00:00
|
|
|
int64_t _timespec_tomicros(struct timespec) pureconst;
|
|
|
|
int64_t _timespec_tomillis(struct timespec) pureconst;
|
2022-08-13 20:11:56 +00:00
|
|
|
int64_t _timespec_tonanos(struct timespec) pureconst;
|
|
|
|
struct timespec _timespec_add(struct timespec, struct timespec) pureconst;
|
2022-09-06 04:43:49 +00:00
|
|
|
struct timespec _timespec_fromnanos(int64_t) pureconst;
|
2022-08-06 02:24:05 +00:00
|
|
|
struct timespec _timespec_frommicros(int64_t) pureconst;
|
|
|
|
struct timespec _timespec_frommillis(int64_t) pureconst;
|
|
|
|
struct timespec _timespec_mono(void);
|
2022-08-13 20:11:56 +00:00
|
|
|
struct timespec _timespec_real(void);
|
|
|
|
struct timespec _timespec_sub(struct timespec, struct timespec) pureconst;
|
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_ */
|