[Mono-devel-list] metadata/threadpool.c won't build under svn latest

Bill Middleton flashdict at gmail.com
Wed Apr 13 03:41:23 EDT 2005


Hi,

  I had to remove the followiing line from threadpool.c to get it to
build here on FreeBSD, where we have no epoll().

Index: threadpool.c
===================================================================
--- threadpool.c        (revision 42886)
+++ threadpool.c        (working copy)
@@ -622,7 +622,6 @@
                data->epollfd = -1;
        }
 #else
-       data->epollfd = -1;
        data->epoll_disabled = TRUE;
 #endif


The epollfd is conditionally a member of the SocketIOData structure
based on whether HAVE_EPOLL is defined, so assigning -1 to it won't
work.

And while I'm here,  I'd just like to say Nicely Done regarding
yesterday's beta.


Bill



More information about the Mono-devel-list mailing list