mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-04-16 11:54:58 +00:00
- Exhaustively document cancellation points - Rename SIGCANCEL to SIGTHR just like BSDs - Further improve POSIX thread cancellations - Ensure asynchronous cancellations work correctly - Elevate the quality of getrandom() and getentropy() - Make futexes cancel correctly on OpenBSD 6.x and 7.x - Add reboot.com and shutdown.com to examples directory - Remove underscore prefix from awesome timespec_*() APIs - Create assertions that help verify our cancellation points - Remove bad timespec APIs (cmp generalizes eq/ne/gt/gte/lt/lte)
27 lines
1 KiB
C
27 lines
1 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 lutimes(const char *, const struct timeval[2]);
|
|
int utimes(const char *, const struct timeval[2]);
|
|
|
|
int timeval_cmp(struct timeval, struct timeval) pureconst;
|
|
struct timeval timeval_add(struct timeval, struct timeval) pureconst;
|
|
struct timeval timeval_sub(struct timeval, struct timeval) pureconst;
|
|
struct timeval timespec_totimeval(struct timespec) pureconst;
|
|
struct timespec timeval_totimespec(struct timeval) pureconst;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_H_ */
|