Browse Source

Fix for when EV_MULTIPLICITY=1

v0.7.4-release
Jérémy Lal 15 years ago
committed by Ryan Dahl
parent
commit
ffb4b47367
  1. 2
      src/node.cc

2
src/node.cc

@ -80,7 +80,7 @@ static ev_timer gc_timer;
static void GCTimeout(EV_P_ ev_timer *watcher, int revents) { static void GCTimeout(EV_P_ ev_timer *watcher, int revents) {
assert(watcher == &gc_timer); assert(watcher == &gc_timer);
assert(revents == EV_TIMER); assert(revents == EV_TIMER);
if (ev_pending_count() == 0) V8::IdleNotification(); if (ev_pending_count(EV_DEFAULT_UC) == 0) V8::IdleNotification();
} }

Loading…
Cancel
Save