aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2018-05-04 15:21:24 -0700
committerGravatar yang-g <yangg@google.com>2018-05-04 15:21:24 -0700
commitead686dd100457f085ea73802282b12c351a3c5e (patch)
tree7ae4f68e5f1015c30a8fa61a098fc28cfe8ab1c6 /src
parentfec4b30d9a94cb6700bfe92ab50a3eccb9ebf128 (diff)
Remove redundant ExecCtx
Diffstat (limited to 'src')
-rw-r--r--src/core/lib/surface/completion_queue.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/lib/surface/completion_queue.cc b/src/core/lib/surface/completion_queue.cc
index d0363917b0..f751741712 100644
--- a/src/core/lib/surface/completion_queue.cc
+++ b/src/core/lib/surface/completion_queue.cc
@@ -390,7 +390,6 @@ static bool cq_event_queue_push(grpc_cq_event_queue* q, grpc_cq_completion* c) {
static grpc_cq_completion* cq_event_queue_pop(grpc_cq_event_queue* q) {
grpc_cq_completion* c = nullptr;
- grpc_core::ExecCtx exec_ctx;
if (gpr_spinlock_trylock(&q->queue_lock)) {
GRPC_STATS_INC_CQ_EV_QUEUE_TRYLOCK_SUCCESSES();