mirror of
https://github.com/ziglang/zig.git
synced 2024-12-03 18:38:45 +00:00
19ca2415f2
This commit introduces tools/update_glibc.zig to update the start files for next time. Some notable changes in recent glibc: * abi-note.S has been changed to abi-note.c but we resist the change to keep it easier to compile the start files. * elf-init.c has been deleted upstream. Further testing should be done to verify that binaries against glibc omitting elf-init.c still run properly on oldel glibc linux systems. Closes #4926
28 lines
832 B
C
Vendored
28 lines
832 B
C
Vendored
#ifndef _STRUCT_TIMESPEC64_H
|
|
#define _STRUCT_TIMESPEC64_H
|
|
|
|
#if __TIMESIZE == 64
|
|
# define __timespec64 timespec
|
|
#else
|
|
#include <endian.h>
|
|
/* The glibc Y2038-proof struct __timespec64 structure for a time value.
|
|
To keep things Posix-ish, we keep the nanoseconds field a 32-bit
|
|
signed long, but since the Linux field is a 64-bit signed int, we
|
|
pad our tv_nsec with a 32-bit unnamed bit-field padding.
|
|
|
|
As a general rule the Linux kernel is ignoring upper 32 bits of
|
|
tv_nsec field. */
|
|
struct __timespec64
|
|
{
|
|
__time64_t tv_sec; /* Seconds */
|
|
# if BYTE_ORDER == BIG_ENDIAN
|
|
__int32_t :32; /* Padding */
|
|
__int32_t tv_nsec; /* Nanoseconds */
|
|
# else
|
|
__int32_t tv_nsec; /* Nanoseconds */
|
|
__int32_t :32; /* Padding */
|
|
# endif
|
|
};
|
|
#endif
|
|
#endif /* _STRUCT_TIMESPEC64_H */
|