aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/timer_manager.cc
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-11-14 18:21:18 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2017-11-14 18:21:18 -0800
commit995aa91bbbc68deb6dfd7c667cfee3af2bedec08 (patch)
tree5f0e57da2d31e331b05a6cb9194508f92eb3f6d0 /src/core/lib/iomgr/timer_manager.cc
parent6c26b16fe06b1cc75b4dac372f4f51f6b7d1bfc0 (diff)
Maintain exec_ctx flags initialization as it was before
Diffstat (limited to 'src/core/lib/iomgr/timer_manager.cc')
-rw-r--r--src/core/lib/iomgr/timer_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/timer_manager.cc b/src/core/lib/iomgr/timer_manager.cc
index 6a43f4fadb..ed03e48b32 100644
--- a/src/core/lib/iomgr/timer_manager.cc
+++ b/src/core/lib/iomgr/timer_manager.cc
@@ -273,7 +273,7 @@ static void timer_thread_cleanup(completed_thread* ct) {
static void timer_thread(void* completed_thread_ptr) {
// this threads exec_ctx: we try to run things through to completion here
// since it's easy to spin up new threads
- grpc_core::ExecCtx _local_exec_ctx;
+ grpc_core::ExecCtx _local_exec_ctx(0);
timer_main_loop();
timer_thread_cleanup((completed_thread*)completed_thread_ptr);