aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/timer_manager.cc
diff options
context:
space:
mode:
authorGravatar kpayson64 <kpayson@google.com>2018-06-20 15:18:38 -0700
committerGravatar kpayson64 <kpayson@google.com>2018-06-20 15:20:15 -0700
commit46a60590da056a556671d7a86a87c3ba0652ba89 (patch)
tree67d50df597b9db7b9357c1d51ed908d1853234f3 /src/core/lib/iomgr/timer_manager.cc
parent062f369c9cd28219981748f94830aa2f2b3cf95a (diff)
Changes
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 9fdae17909..55be919bbb 100644
--- a/src/core/lib/iomgr/timer_manager.cc
+++ b/src/core/lib/iomgr/timer_manager.cc
@@ -265,7 +265,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 exec_ctx(0);
+ grpc_core::ExecCtx exec_ctx(GRPC_EXEC_CTX_FLAG_IS_INTERNAL_THREAD);
timer_main_loop();
timer_thread_cleanup(static_cast<completed_thread*>(completed_thread_ptr));