--- libev/ev_poll.c 2008/10/29 06:32:48 1.27 +++ libev/ev_poll.c 2009/07/09 09:11:20 1.28 @@ -89,7 +89,11 @@ poll_poll (EV_P_ ev_tstamp timeout) { struct pollfd *p; - int res = poll (polls, pollcnt, (int)ceil (timeout * 1000.)); + int res; + + if (expect_false (suspend_cb)) suspend_cb (EV_A); + res = poll (polls, pollcnt, (int)ceil (timeout * 1000.)); + if (expect_false (resume_cb)) resume_cb (EV_A); if (expect_false (res < 0)) {