Re: Addition of ppoll(2), a wrapper around pollts(2)

2020-05-24 Thread Martin Husemann
On Mon, May 25, 2020 at 04:32:14AM +0530, Apurva Nandan wrote: > Hi all, > I have added ppoll(2) implementation to libc/sys, which is a wrapper around > pollts(2) function (basically, pollts(2) and ppoll(2) are aliases, and > NetBSD has pollts(2)). Why not just add a weak alias for the function? I

Addition of ppoll(2), a wrapper around pollts(2)

2020-05-24 Thread Apurva Nandan
Hi all, I have added ppoll(2) implementation to libc/sys, which is a wrapper around pollts(2) function (basically, pollts(2) and ppoll(2) are aliases, and NetBSD has pollts(2)). This is done to increase the compatibility with Linux, FreeBSD, OpenBSD, DragonFly and Illumos. Man page for poll(2) has