From e01940f2b3210b94485c80bab77392103d557648 Mon Sep 17 00:00:00 2001 From: Sree Kuchibhotla Date: Sun, 27 Aug 2017 18:10:12 -0700 Subject: [PATCH] clang format --- src/core/lib/iomgr/ev_epoll1_linux.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/core/lib/iomgr/ev_epoll1_linux.c b/src/core/lib/iomgr/ev_epoll1_linux.c index 896d8b8eef3..b940d48ba9e 100644 --- a/src/core/lib/iomgr/ev_epoll1_linux.c +++ b/src/core/lib/iomgr/ev_epoll1_linux.c @@ -56,14 +56,14 @@ static grpc_wakeup_fd global_wakeup_fd; #define MAX_EPOLL_EVENTS 100 #define MAX_EPOLL_EVENTS_HANDLED_PER_ITERATION 1 - /* NOTE ON SYNCHRONIZATION: - - Fields in this struct are only modified by the designated poller. Hence - there is no need for any locks to protect the struct. - - - num_events and cursor fields have to be of atomic type to provide memory - visibility guarantees only. i.e In case of multiple pollers, the designated - polling thread keeps changing; the thread that wrote these values may be - different from the thread reading the values */ +/* NOTE ON SYNCHRONIZATION: + * - Fields in this struct are only modified by the designated poller. Hence + * there is no need for any locks to protect the struct. + * - num_events and cursor fields have to be of atomic type to provide memory + * visibility guarantees only. i.e In case of multiple pollers, the designated + * polling thread keeps changing; the thread that wrote these values may be + * different from the thread reading the values + */ typedef struct epoll_set { int epfd;