clock_nanosleep: add time64 syscall support, decouple 32-bit time_t
authorRich Felker <dalias@aerifal.cx>
Sun, 28 Jul 2019 19:08:34 +0000 (15:08 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 28 Jul 2019 19:42:49 +0000 (15:42 -0400)
commit1334e3668034615b23793a20277aabc441fee718
treebc8f76764679a601247565366afe879887d87333
parent2c2c3605d3b3ff32902c406d17ac44e7544be4e2
clock_nanosleep: add time64 syscall support, decouple 32-bit time_t

time64 syscall is used only if it's the only one defined for the arch,
or if the requested time does not fit in 32 bits. on current 32-bit
archs where time_t is a 32-bit type, this makes it statically
unreachable.

on 64-bit archs, there is no change to the code after preprocessing.
on current 32-bit archs, the time is moved through an intermediate
copy to remove the assumption that time_t is a 32-bit type.
src/time/clock_nanosleep.c