mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
0409096658
This change undefines __linux__ and adds APIs like clock_settime(). The gosh darned getopt_long() API has been reintroduced, thanks to OpenBSD.
44 lines
1.7 KiB
C
44 lines
1.7 KiB
C
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_H_
|
|
#include "libc/calls/struct/timespec.h"
|
|
#include "libc/time/struct/timezone.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct timeval {
|
|
int64_t tv_sec;
|
|
int64_t tv_usec; /* microseconds */
|
|
};
|
|
|
|
int futimes(int, const struct timeval[2]);
|
|
int futimesat(int, const char *, const struct timeval[2]);
|
|
int gettimeofday(struct timeval *, struct timezone *);
|
|
int settimeofday(const struct timeval *, const struct timezone *);
|
|
int lutimes(const char *, const struct timeval[2]);
|
|
int utimes(const char *, const struct timeval[2]);
|
|
|
|
#ifdef COSMO
|
|
/* cosmopolitan libc's non-posix timevals library
|
|
removed by default due to emacs codebase clash */
|
|
#define timeval_zero ((struct timeval){0})
|
|
#define timeval_max ((struct timeval){0x7fffffffffffffff, 999999})
|
|
int timeval_cmp(struct timeval, struct timeval) pureconst;
|
|
struct timeval timeval_real(void);
|
|
struct timeval timeval_frommicros(int64_t) pureconst;
|
|
struct timeval timeval_frommillis(int64_t) pureconst;
|
|
struct timeval timeval_add(struct timeval, struct timeval) pureconst;
|
|
struct timeval timeval_sub(struct timeval, struct timeval) pureconst;
|
|
struct timeval timeval_subz(struct timeval, struct timeval) pureconst;
|
|
struct timeval timespec_totimeval(struct timespec) pureconst;
|
|
struct timespec timeval_totimespec(struct timeval) pureconst;
|
|
static inline bool timeval_iszero(struct timeval __tv) {
|
|
return !(__tv.tv_sec | __tv.tv_usec);
|
|
}
|
|
static inline bool timeval_isvalid(struct timeval __tv) {
|
|
return __tv.tv_sec >= 0 && __tv.tv_usec < 1000000ull;
|
|
}
|
|
#endif /* COSMO */
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_H_ */
|