From e85e713d0b66259cf8f4aabfab8086784239473b Mon Sep 17 00:00:00 2001 From: Eric Gribkoff Date: Tue, 26 Jun 2018 19:56:53 -0700 Subject: [PATCH] timer manager: don't turn off threading in start_threads() --- src/core/lib/iomgr/timer_manager.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/lib/iomgr/timer_manager.cc b/src/core/lib/iomgr/timer_manager.cc index 55be919bbb0..26de2166718 100644 --- a/src/core/lib/iomgr/timer_manager.cc +++ b/src/core/lib/iomgr/timer_manager.cc @@ -277,7 +277,6 @@ static void start_threads(void) { g_threaded = true; start_timer_thread_and_unlock(); } else { - g_threaded = false; gpr_mu_unlock(&g_mu); } }