[PATCH v2 1/2] linux-user: Add support for ppoll_time64() and pselect6_time64()

2020-08-24 Thread Filip Bozuta
This patch introduces functionality for following time64 syscalls: *ppoll_time64 This is a year 2038 safe variant of: int poll(struct pollfd *fds, nfds_t nfds, int timeout) -- wait for some event on a file descriptor -- man page: https://man7.org/linux/man-pages/man2/ppoll.2.html

Re: [PATCH v2 1/2] linux-user: Add support for ppoll_time64() and pselect6_time64()

2020-09-05 Thread Laurent Vivier
Le 25/08/2020 à 17:23, Laurent Vivier a écrit : > Le 25/08/2020 à 09:17, Laurent Vivier a écrit : >> Le 25/08/2020 à 00:30, Filip Bozuta a écrit : >>> This patch introduces functionality for following time64 syscalls: >>> >>> *ppoll_time64 >>> >>> This is a year 2038 safe variant of: >>> >>>

Re: [PATCH v2 1/2] linux-user: Add support for ppoll_time64() and pselect6_time64()

2020-08-25 Thread Laurent Vivier
Le 25/08/2020 à 00:30, Filip Bozuta a écrit : > This patch introduces functionality for following time64 syscalls: > > *ppoll_time64 > > This is a year 2038 safe variant of: > > int poll(struct pollfd *fds, nfds_t nfds, int timeout) > -- wait for some event on a file descriptor -- >

Re: [PATCH v2 1/2] linux-user: Add support for ppoll_time64() and pselect6_time64()

2020-08-25 Thread Laurent Vivier
Le 25/08/2020 à 00:30, Filip Bozuta a écrit : > This patch introduces functionality for following time64 syscalls: > > *ppoll_time64 > > This is a year 2038 safe variant of: > > int poll(struct pollfd *fds, nfds_t nfds, int timeout) > -- wait for some event on a file descriptor -- >

Re: [PATCH v2 1/2] linux-user: Add support for ppoll_time64() and pselect6_time64()

2020-08-25 Thread Laurent Vivier
Le 25/08/2020 à 09:17, Laurent Vivier a écrit : > Le 25/08/2020 à 00:30, Filip Bozuta a écrit : >> This patch introduces functionality for following time64 syscalls: >> >> *ppoll_time64 >> >> This is a year 2038 safe variant of: >> >> int poll(struct pollfd *fds, nfds_t nfds, int timeout) >