On Thu, Feb 7, 2019 at 7:02 PM S P <[email protected]> wrote: > Currently Libuv does not work with QNX. > From what I have read and based on my research it appears that Libuv will not > work due to the lack of epoll.h or pollset.h > Is it possible to integrate the POCO C++ Libraries. In their 1.8 release they > provided the PollSet class to their Net Libraries. > I know QNX 6.5 SP 1 is able to use POCO C++ libraries. > Thoughts on whether anyone has done this or already has a solution for using > libuv on qnx? > > Thanks
There is no reason libuv couldn't be ported to QNX except people power. There's src/unix/posix-poll.c that uses traditional poll() to implement the event loop, you could use that as a starting point; it should work on QNX. -- You received this message because you are subscribed to the Google Groups "libuv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
