aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/iomgr')
-rw-r--r--src/core/iomgr/iomgr.c2
-rw-r--r--src/core/iomgr/resolve_address_posix.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/iomgr/iomgr.c b/src/core/iomgr/iomgr.c
index 06413eed68..6a0f6c4937 100644
--- a/src/core/iomgr/iomgr.c
+++ b/src/core/iomgr/iomgr.c
@@ -113,7 +113,7 @@ grpc_iomgr_shutdown (void)
}
last_warning_time = gpr_now (GPR_CLOCK_REALTIME);
}
- if (grpc_alarm_check (gpr_inf_future (GPR_CLOCK_MONOTONIC), NULL, &closure_list))
+ if (grpc_alarm_check (gpr_inf_future (&exec_ctx, GPR_CLOCK_MONOTONIC), NULL))
{
gpr_mu_unlock (&g_mu);
grpc_exec_ctx_finish (&exec_ctx);
diff --git a/src/core/iomgr/resolve_address_posix.c b/src/core/iomgr/resolve_address_posix.c
index 9d269d364a..1017a788ff 100644
--- a/src/core/iomgr/resolve_address_posix.c
+++ b/src/core/iomgr/resolve_address_posix.c
@@ -166,7 +166,7 @@ do_request_thread (void *rp)
grpc_resolve_cb cb = r->cb;
gpr_free (r->name);
gpr_free (r->default_port);
- cb (arg, resolved, &closure_list);
+ cb (&exec_ctx, arg, resolved);
grpc_iomgr_unregister_object (&r->iomgr_object);
gpr_free (r);
grpc_exec_ctx_finish (&exec_ctx);