recvmmsg: add time64 syscall support, decouple 32-bit time_t
authorRich Felker <dalias@aerifal.cx>
Tue, 30 Jul 2019 01:03:01 +0000 (21:03 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 30 Jul 2019 01:03:01 +0000 (21:03 -0400)
commit6a4a1691a0653bd51a30c2b8ac19448b7ebac796
tree1a004286f76c583abafa03b2b2f9623a3f4639d1
parent558c01338b0b635632e70af6ec8a484ca70b0328
recvmmsg: add time64 syscall support, decouple 32-bit time_t

the time64 syscall is used only if the timeout does not fit in 32
bits. after preprocessing, the code is unchanged on 64-bit archs. for
32-bit archs, the timeout now goes through an intermediate copy,
meaning that the caller does not get back the updated timeout. this is
based on my reading of the documentation, which does not document the
updating as a contract you can rely on, and mentions that the whole
recvmmsg timeout mechanism is buggy and unlikely to be useful. if it
turns out that there's interest in making the remaining time
officially available to callers, such functionality could be added
back later.
src/network/recvmmsg.c