From 08fecb21d13120a92cb5d165527f63782004f8ce Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 1 Jul 2020 15:07:32 -0400 Subject: [PATCH] docs: fixing additional multiline comment --- runtime/include/module.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/runtime/include/module.h b/runtime/include/module.h index db94522..46340d3 100644 --- a/runtime/include/module.h +++ b/runtime/include/module.h @@ -19,11 +19,13 @@ struct module { int socket_descriptor; int port; - /* unfortunately, using UV for accepting connections is not great! - on_connection, to create a new accepted connection, will have to - init a tcp handle, which requires a uvloop. cannot use main as - rest of the connection is handled in sandboxing threads, with per-core(per-thread) tls data-structures. - so, using direct epoll for accepting connections. */ + /* + * unfortunately, using UV for accepting connections is not great! + * on_connection, to create a new accepted connection, will have to init a tcp handle, + * which requires a uvloop. cannot use main as rest of the connection is handled in + * sandboxing threads, with per-core(per-thread) tls data-structures. + * so, using direct epoll for accepting connections. + */ // TODO: Should this be removed? // uv_handle_t srvuv;