sigtimedwait: add time64 syscall support, decouple 32-bit time_t
authorRich Felker <dalias@aerifal.cx>
Sun, 28 Jul 2019 21:05:47 +0000 (17:05 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 28 Jul 2019 21:09:57 +0000 (17:09 -0400)
commit68c983919ecfa75a8216d93b85baaefcb7b6e51c
tree0179eebc6fef5bf503a6ddb20b24adf992e7ca82
parent2ab90de7ac53317a63d999b3e26d44d66684464c
sigtimedwait: 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 timeout length 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 are only superficial changes to the code after
preprocessing. on current 32-bit archs, the timeout is passed via an
intermediate copy to remove the assumption that time_t is a 32-bit
type.
src/signal/sigtimedwait.c