CLEANUP: pollers: remove dead code in the polling loop

As reported by Ilya and Coverity in issue #1858, since recent commit
eea152ee6 ("BUG/MINOR: signals/poller: ensure wakeup from signals")
which removed the test for the global signal flag from the pollers'
loop, the remaining "wake" flag doesn't need to be tested since it
already participates to zeroing the wait_time and will be caught
on the previous line.

Let's just remove that test now.
diff --git a/src/ev_epoll.c b/src/ev_epoll.c
index 880aa58..679e5e8 100644
--- a/src/ev_epoll.c
+++ b/src/ev_epoll.c
@@ -238,8 +238,6 @@
 		}
 		if (timeout || !wait_time)
 			break;
-		if (wake)
-			break;
 		if (tick_isset(exp) && tick_is_expired(exp, now_ms))
 			break;
 	} while (1);
diff --git a/src/ev_evports.c b/src/ev_evports.c
index 0a7df15..38fd183 100644
--- a/src/ev_evports.c
+++ b/src/ev_evports.c
@@ -217,8 +217,6 @@
 			break;
 		if (timeout || !wait_time)
 			break;
-		if (wake)
-			break;
 		if (tick_isset(exp) && tick_is_expired(exp, now_ms))
 			break;
 	} while(1);
diff --git a/src/ev_kqueue.c b/src/ev_kqueue.c
index 4796e68..e809762 100644
--- a/src/ev_kqueue.c
+++ b/src/ev_kqueue.c
@@ -191,8 +191,6 @@
 		}
 		if (timeout || !wait_time)
 			break;
-		if (wake)
-			break;
 		if (tick_isset(exp) && tick_is_expired(exp, now_ms))
 			break;
 	} while (1);