From 85934bcf2a40980352b3fbe9cebd68aca7a1e074 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 17 May 2011 14:55:26 -0700 Subject: [PATCH] Remove libev/macos kqueue override - goes in libuv --- src/node.cc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/node.cc b/src/node.cc index 55677f7195e..0e576198dad 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2348,13 +2348,6 @@ char** Init(int argc, char *argv[]) { wsa_init(); #endif // __MINGW32__ - // Initialize the default ev loop. -#if defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 - ev_default_loop(EVBACKEND_KQUEUE); -#else - ev_default_loop(EVFLAG_AUTO); -#endif - uv_prepare_init(&node::prepare_tick_watcher, NULL, NULL); uv_prepare_start(&node::prepare_tick_watcher, PrepareTick); uv_unref();