diff options
author | root <root> | 2009-07-09 09:11:20 +0000 |
---|---|---|
committer | root <root> | 2009-07-09 09:11:20 +0000 |
commit | ce8dc1a03da38c405583d4673d8da12c2a26373e (patch) | |
tree | 3ef659f288940a17ba4950399baf18be3b67e1e9 /ev_poll.c | |
parent | dcdb154c9c5bd4ae64d5ebde7392ce11d7c774aa (diff) |
*** empty log message ***
Diffstat (limited to 'ev_poll.c')
-rw-r--r-- | ev_poll.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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)) { |