diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-20 06:59:09 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-20 06:59:09 -0700 |
commit | cad47dd47a51ca2bd264b47ac182a881f1fd4fac (patch) | |
tree | 7750a98a8d6b2de87e92aadbe9748c05d0c68c02 /src/core/lib/iomgr | |
parent | d2164409343445e1f2de62b210218ad05c75d4c9 (diff) |
Compile fix
Diffstat (limited to 'src/core/lib/iomgr')
-rw-r--r-- | src/core/lib/iomgr/ev_epoll_linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/ev_epoll_linux.c b/src/core/lib/iomgr/ev_epoll_linux.c index f1e14e9868..1e88fe76d3 100644 --- a/src/core/lib/iomgr/ev_epoll_linux.c +++ b/src/core/lib/iomgr/ev_epoll_linux.c @@ -1224,7 +1224,7 @@ static void set_ready(grpc_exec_ctx *exec_ctx, grpc_fd *fd, gpr_atm *state) { if ((curr & FD_SHUTDOWN_BIT) > 0) { /* The fd is shutdown. Do nothing */ return; - } else if (gpr_atm_full_barrier_cas(state, curr, CLOSURE_NOT_READY)) { + } else if (gpr_atm_full_cas(state, curr, CLOSURE_NOT_READY)) { grpc_closure_sched(exec_ctx, (grpc_closure *)curr, GRPC_ERROR_NONE); return; } |