aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/ev_epoll_linux.c
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2017-02-12 17:09:08 -0800
committerGravatar Sree Kuchibhotla <sreek@google.com>2017-02-12 17:09:08 -0800
commit4c60d0dc23c402c0e1b13a67a95736ec84965d53 (patch)
tree144f5583e3c899ac5cf48cb177e396fc7c395355 /src/core/lib/iomgr/ev_epoll_linux.c
parent4db8c82e1411e65da735d25501c783e2b3b7fb4b (diff)
fix comment style
Diffstat (limited to 'src/core/lib/iomgr/ev_epoll_linux.c')
-rw-r--r--src/core/lib/iomgr/ev_epoll_linux.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/lib/iomgr/ev_epoll_linux.c b/src/core/lib/iomgr/ev_epoll_linux.c
index b896b94c37..680d2b05c8 100644
--- a/src/core/lib/iomgr/ev_epoll_linux.c
+++ b/src/core/lib/iomgr/ev_epoll_linux.c
@@ -1462,10 +1462,10 @@ static void fd_become_readable(grpc_exec_ctx *exec_ctx, grpc_fd *fd,
set_ready(exec_ctx, fd, &fd->read_closure);
/* Note, it is possible that fd_become_readable might be called twice with
- // different 'notifier's when an fd becomes readable and it is in two epoll
- // sets (This can happen briefly during polling island merges). In such cases
- // it does not really matter which notifer is set as the read_notifier_pollset
- // (They would both point to the same polling island anyway)
+ different 'notifier's when an fd becomes readable and it is in two epoll
+ sets (This can happen briefly during polling island merges). In such cases
+ it does not really matter which notifer is set as the read_notifier_pollset
+ (They would both point to the same polling island anyway) */
gpr_atm_no_barrier_store(&fd->read_notifier_pollset, (gpr_atm)notifier);
}