From 4b076e67982e98601e7df912ce8ef74b0e37f309 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 13 Apr 2022 08:35:11 -0400 Subject: [PATCH] doc: Remove TODO comment --- runtime/include/scheduler_execute_epoll_loop.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/runtime/include/scheduler_execute_epoll_loop.h b/runtime/include/scheduler_execute_epoll_loop.h index 2810e6d..432c6c0 100644 --- a/runtime/include/scheduler_execute_epoll_loop.h +++ b/runtime/include/scheduler_execute_epoll_loop.h @@ -41,8 +41,6 @@ scheduler_execute_epoll_loop(void) if (sandbox->state == SANDBOX_ASLEEP) { sandbox_wakeup(sandbox); } } else if (epoll_events[i].events & (EPOLLERR | EPOLLHUP)) { - /* Mystery: This seems to never fire. Why? Issue #130 */ - /* Close socket and set as error on socket error or unexpected client hangup */ struct sandbox *sandbox = (struct sandbox *)epoll_events[i].data.ptr; int error = 0;