From 7ca1f8e63d256afef757143a60e5b1c3cd8701ce Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Fri, 25 Sep 2020 17:10:22 -0400 Subject: [PATCH] docs: Remove incorrect comment --- runtime/include/sandbox.h | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/include/sandbox.h b/runtime/include/sandbox.h index 3db2ecd..3bb6ef8 100644 --- a/runtime/include/sandbox.h +++ b/runtime/include/sandbox.h @@ -345,7 +345,6 @@ sandbox_close_http(struct sandbox *sandbox) uv_close((uv_handle_t *)&sandbox->client_libuv_stream, libuv_callbacks_on_close_wakeup_sakebox); worker_thread_process_io(); #else - /* Freshly allocated sandbox going runnable for first time, so register client socket with epoll */ int rc = epoll_ctl(worker_thread_epoll_file_descriptor, EPOLL_CTL_DEL, sandbox->client_socket_descriptor, NULL); if (unlikely(rc < 0)) panic_err();