aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr/iomgr.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:53:14 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:53:14 -0700
commit098047b53abfb3142b0dc9eca83564cd565902b7 (patch)
tree463bb5d60f365f4c7a5e3a6e77ff77bc09ae80c2 /src/core/iomgr/iomgr.c
parent9fa914e554826f3d11663263498df829e0b1b94e (diff)
Rename run
Diffstat (limited to 'src/core/iomgr/iomgr.c')
-rw-r--r--src/core/iomgr/iomgr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/iomgr/iomgr.c b/src/core/iomgr/iomgr.c
index 20b01ed4be..dac906e6e9 100644
--- a/src/core/iomgr/iomgr.c
+++ b/src/core/iomgr/iomgr.c
@@ -116,7 +116,7 @@ grpc_iomgr_shutdown (void)
if (grpc_alarm_check (gpr_inf_future (GPR_CLOCK_MONOTONIC), NULL, &closure_list))
{
gpr_mu_unlock (&g_mu);
- grpc_closure_list_run (&closure_list);
+ grpc_exec_ctx_finish (&exec_ctx);
gpr_mu_lock (&g_mu);
continue;
}
@@ -143,7 +143,7 @@ grpc_iomgr_shutdown (void)
gpr_mu_unlock (&g_mu);
grpc_alarm_list_shutdown (&closure_list);
- grpc_closure_list_run (&closure_list);
+ grpc_exec_ctx_finish (&exec_ctx);
/* ensure all threads have left g_mu */
gpr_mu_lock (&g_mu);