diff options
author | David Garcia Quintas <dgq@google.com> | 2015-10-13 07:52:54 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-10-13 07:52:54 -0700 |
commit | 9e76e7aa3a0d6a8fe95b159177c839f32f3acabb (patch) | |
tree | 07d49a729c488313352e4b36360eda54d183750a /src/core | |
parent | 63e72a7008196b43564c8b1ff2c042d590e41e3f (diff) |
removed unused local var
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/iomgr/executor.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/iomgr/executor.c b/src/core/iomgr/executor.c index 94e5114dd5..457e5cdbac 100644 --- a/src/core/iomgr/executor.c +++ b/src/core/iomgr/executor.c @@ -124,14 +124,12 @@ void grpc_executor_enqueue(grpc_closure *closure, int success) { } void grpc_executor_shutdown() { - gpr_thd_id tid; int pending_join; grpc_closure *closure; grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; gpr_mu_lock(&g_executor.mu); pending_join = g_executor.pending_join; - tid = g_executor.tid; g_executor.shutting_down = 1; gpr_mu_unlock(&g_executor.mu); /* we can release the lock at this point despite the access to the closure |