mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-04-06 07:48:45 +00:00
- More timspec_*() and timeval_*() APIs have been introduced. - The copyfd() function is now simplified thanks to POSIX rules. - More Cosmo-specific APIs have been moved behind the COSMO define. - The setitimer() polyfill for Windows NT is now much higher quality. - Fixed build error for MODE=aarch64 due to -mstringop-strategy=loop. - This change introduces `make MODE=nox87 toolchain` which makes it possible to build programs using your cosmocc toolchain that don't have legacy fpu instructions. This is useful, for example, if you want to have a ~22kb tinier blink virtual machine.
24 lines
1.2 KiB
C
24 lines
1.2 KiB
C
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_INTERNAL_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_INTERNAL_H_
|
|
#include "libc/calls/struct/timeval.h"
|
|
#include "libc/mem/alloca.h"
|
|
#include "libc/time/struct/timezone.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
axdx_t sys_gettimeofday(struct timeval *, struct timezone *, void *) _Hide;
|
|
int sys_futimes(int, const struct timeval *) _Hide;
|
|
int sys_lutimes(const char *, const struct timeval *) _Hide;
|
|
int sys_utimes(const char *, const struct timeval *) _Hide;
|
|
axdx_t sys_gettimeofday_m1(struct timeval *, struct timezone *, void *) _Hide;
|
|
axdx_t sys_gettimeofday_xnu(struct timeval *, struct timezone *, void *) _Hide;
|
|
axdx_t sys_gettimeofday_nt(struct timeval *, struct timezone *, void *) _Hide;
|
|
int sys_utimes_nt(const char *, const struct timeval[2]) _Hide;
|
|
axdx_t sys_gettimeofday_metal(struct timeval *, struct timezone *, void *);
|
|
|
|
const char *DescribeTimeval(char[45], int, const struct timeval *);
|
|
#define DescribeTimeval(rc, ts) DescribeTimeval(alloca(45), rc, ts)
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMEVAL_INTERNAL_H_ */
|