Python is maybe the most widely used language, but clp gets 0 posts some days?
Usenet is dead. Long live Usenet. -- https://mail.python.org/mailman/listinfo/python-list
Calling pselect/ppoll/epoll_pwait
Does Python provide any way to call the "p" variants of the I/O multiplexing functions? Looking at the documentation of the select[1] and selectors[2] modules, it appears that they expose only the "non-p" variants. [1] https://docs.python.org/3/library/select.html [2] https://docs.python.org/3/library/selectors.html -- Google Where SkyNet meets Idiocracy -- https://mail.python.org/mailman/listinfo/python-list
Re: Calling pselect/ppoll/epoll_pwait
> On 2 Dec 2022, at 20:03, Ian Pilcher wrote: > > Does Python provide any way to call the "p" variants of the I/O > multiplexing functions? > > Looking at the documentation of the select[1] and selectors[2] modules, > it appears that they expose only the "non-p" variants. > > [1] https://docs.python.org/3/library/select.html > [2] https://docs.python.org/3/library/selectors.html Can you use signalfd and select/poll/epoll? Barry > > -- > > Google Where SkyNet meets Idiocracy > > -- > https://mail.python.org/mailman/listinfo/python-list > -- https://mail.python.org/mailman/listinfo/python-list
