diff options
Diffstat (limited to 'docs/examples/ephiperfifo.c')
-rw-r--r-- | docs/examples/ephiperfifo.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/examples/ephiperfifo.c b/docs/examples/ephiperfifo.c index 35991de77..a8dda2a4e 100644 --- a/docs/examples/ephiperfifo.c +++ b/docs/examples/ephiperfifo.c @@ -518,9 +518,6 @@ int main(int argc _Unused, char **argv _Unused) fprintf(MSG_OUT, "Entering wait loop\n"); fflush(MSG_OUT); while(!g_should_exit_) { - /* TODO(josh): use epoll_pwait to avoid a race on the signal. Mask the - * signal before the while loop, and then re-enable the signal during - * epoll wait. Mask at the end of the loop. */ err = epoll_wait(g.epfd, events, sizeof(events)/sizeof(struct epoll_event), 10000); if(err == -1) { |