Remove libev/macos kqueue override - goes in libuv

v0.7.4-release
Ryan Dahl 2011-05-17 14:55:26 -07:00
parent 0271b785a1
commit 85934bcf2a
1 changed files with 0 additions and 7 deletions

View File

@ -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();