From d4f42ec944c24ff72d2242382663e0b5594b66f0 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Thu, 5 Aug 2004 21:37:34 +0000 Subject: [PATCH] don't use BSD KQUEUE until this can be debugged This commit was SVN r1914. --- src/event/event.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/event/event.c b/src/event/event.c index a705f78c62..300d3d6d7c 100644 --- a/src/event/event.c +++ b/src/event/event.c @@ -88,6 +88,7 @@ extern const struct ompi_eventop ompi_win32ops; /* In order of preference */ static const struct ompi_eventop *ompi_eventops[] = { +#if 0 #if HAVE_WORKING_KQUEUE &ompi_kqops, #endif @@ -97,6 +98,7 @@ static const struct ompi_eventop *ompi_eventops[] = { #if HAVE_RTSIG &ompi_rtsigops, #endif +#endif #if HAVE_POLL &ompi_pollops, #endif