MINOR: threads/polling: pollers now handle FDs depending on the process mask
diff --git a/src/ev_select.c b/src/ev_select.c
index 97d4286..49e980f 100644
--- a/src/ev_select.c
+++ b/src/ev_select.c
@@ -141,7 +141,7 @@
 			/* if we specify read first, the accepts and zero reads will be
 			 * seen first. Moreover, system buffers will be flushed faster.
 			 */
-			if (!fdtab[fd].owner)
+			if (!fdtab[fd].owner || !(fdtab[fd].process_mask & tid_bit))
 				continue;
 
 			if (FD_ISSET(fd, tmp_evts[DIR_RD]))