https://bugzilla.novell.com/show_bug.cgi?id=705190

https://bugzilla.novell.com/show_bug.cgi?id=705190#c6


--- Comment #6 from Zoltan Varga <var...@gmail.com> 2011-09-04 23:53:14 UTC ---
Try the attached patch. It would be nice to know exactly why epoll fails,
i.e., these lines in tp-epoll.c.

#ifdef EPOLL_CLOEXEC
    result->epollfd = epoll_create1 (EPOLL_CLOEXEC);
#else
    result->epollfd = epoll_create (256); /* The number does not really matter
*/
    fcntl (result->epollfd, F_SETFD, FD_CLOEXEC);
#endif
    if (result->epollfd == -1)
        return NULL;

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to