+int inline_size
+poll_init (EV_P_ int flags)
+{
+ backend_fudge = 1e-3; /* needed to compensate for select returning early, very conservative */
+ backend_modify = poll_modify;
+ backend_poll = poll_poll;
+
+ pollidxs = 0; pollidxmax = 0;
+ polls = 0; pollmax = 0; pollcnt = 0;
+
+ return EVBACKEND_POLL;
+}
+
+void inline_size
+poll_destroy (EV_P)