From 8af4c337181322cc4fb396199c90f574cfb4163f Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Tue, 22 Sep 2015 12:32:31 -0700 Subject: Final patches for rename --- src/core/iomgr/alarm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/iomgr/alarm.c') diff --git a/src/core/iomgr/alarm.c b/src/core/iomgr/alarm.c index 6e56ccacf5..31de551151 100644 --- a/src/core/iomgr/alarm.c +++ b/src/core/iomgr/alarm.c @@ -105,10 +105,10 @@ grpc_alarm_list_init (gpr_timespec now) } void -grpc_alarm_list_shutdown (grpc_closure_list * closure_list) +grpc_alarm_list_shutdown (grpc_exec_ctx *exec_ctx) { int i; - run_some_expired_alarms (gpr_inf_future (exec_ctx, g_clock_type), NULL, 0); + run_some_expired_alarms (exec_ctx, gpr_inf_future (g_clock_type), NULL, 0); for (i = 0; i < NUM_SHARDS; i++) { shard_type *shard = &g_shards[i]; @@ -373,7 +373,7 @@ int grpc_alarm_check (grpc_exec_ctx * exec_ctx, gpr_timespec now, gpr_timespec * next) { GPR_ASSERT (now.clock_type == g_clock_type); - return run_some_expired_alarms (now, next, gpr_time_cmp (now, gpr_inf_future (exec_ctx, now.clock_type)) != 0); + return run_some_expired_alarms (exec_ctx, now, next, gpr_time_cmp (now, gpr_inf_future (now.clock_type)) != 0); } gpr_timespec -- cgit v1.2.3