Skip to content

Commit

Permalink
* EV4 renamed ev_unloop to ev_break; chase the symbol change.
Browse files Browse the repository at this point in the history
  • Loading branch information
audreyt committed Oct 27, 2010
1 parent 08ef074 commit 2828bc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Feersum.xs
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ prepare_cb (EV_P_ ev_prepare *w, int revents)
{
if (unlikely(revents & EV_ERROR)) {
trouble("EV error in prepare, revents=0x%08x\n", revents);
ev_unloop(EV_A, EVBREAK_ALL);
ev_break(EV_A, EVBREAK_ALL);
return;
}

Expand All @@ -649,7 +649,7 @@ check_cb (EV_P_ ev_check *w, int revents)
{
if (unlikely(revents & EV_ERROR)) {
trouble("EV error in check, revents=0x%08x\n", revents);
ev_unloop(EV_A, EVBREAK_ALL);
ev_break(EV_A, EVBREAK_ALL);
return;
}
trace3("check! head=%p\n", request_ready_rinq);
Expand All @@ -662,7 +662,7 @@ idle_cb (EV_P_ ev_idle *w, int revents)
{
if (unlikely(revents & EV_ERROR)) {
trouble("EV error in idle, revents=0x%08x\n", revents);
ev_unloop(EV_A, EVBREAK_ALL);
ev_break(EV_A, EVBREAK_ALL);
return;
}
trace3("idle! head=%p\n", request_ready_rinq);
Expand Down Expand Up @@ -974,7 +974,7 @@ accept_cb (EV_P_ ev_io *w, int revents)

if (unlikely(revents & EV_ERROR)) {
trouble("EV error in accept_cb, fd=%d, revents=0x%08x\n",w->fd,revents);
ev_unloop(EV_A, EVBREAK_ALL);
ev_break(EV_A, EVBREAK_ALL);
return;
}

Expand Down

0 comments on commit 2828bc0

Please sign in to comment.