1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

linux: Add time64 select support

The syscall __NR_pselect6_time64 (32-bit) or __NR_pselect6 (64-bit)
is used as default.  For architectures with __ASSUME_TIME64_SYSCALLS
the 32-bit fallback uses __NR_select/__NR__newselect or __NR_pselect6
(it should cover the microblaze case where older kernels do not
provide __NR_pselect6).

Checked on x86_64-linux-gnu and i686-linux-gnu (on 5.4 and on 4.15
kernel).

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
Adhemerval Zanella
2020-07-06 16:06:51 -03:00
parent 50e19ddfcd
commit 2433d39b69
3 changed files with 88 additions and 28 deletions

View File

@@ -464,6 +464,12 @@ valid_timespec_to_timeval32 (const struct timespec ts)
return (struct __timeval32) { (time_t) ts.tv_sec, ts.tv_nsec / 1000 };
}
static inline struct __timeval64
valid_timespec_to_timeval64 (const struct timespec ts)
{
return (struct __timeval64) { (time_t) ts.tv_sec, ts.tv_nsec / 1000 };
}
/* Check if a value is in the valid nanoseconds range. Return true if
it is, false otherwise. */
static inline bool