+ return rc;
+}
+
+bool wxEpollDispatcher::HasPending() const
+{
+ epoll_event event;
+ return DoPoll(&event, 1, 0) == 1;
+}
+
+int wxEpollDispatcher::Dispatch(int timeout)
+{
+ epoll_event events[16];
+
+ const int rc = DoPoll(events, WXSIZEOF(events), timeout);
+