summaryrefslogtreecommitdiff
path: root/ev_poll.c
diff options
context:
space:
mode:
Diffstat (limited to 'ev_poll.c')
-rw-r--r--ev_poll.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ev_poll.c b/ev_poll.c
index 5b82b29..f43e780 100644
--- a/ev_poll.c
+++ b/ev_poll.c
@@ -89,7 +89,11 @@ static void
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))
{