aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/timer_manager.cc
diff options
context:
space:
mode:
authorGravatar Dave MacLachlan <dmaclach@gmail.com>2017-11-30 12:48:22 -0800
committerGravatar Dave MacLachlan <dmaclach@gmail.com>2017-11-30 12:48:22 -0800
commitda341bcb8969264800f63eac718e5b483aba9896 (patch)
treea9aaca3c9bcbbc8b296646d715947e59ffc9db25 /src/core/lib/iomgr/timer_manager.cc
parent8a631a2b052330b169fd52d7fb7efea2c149d3a5 (diff)
Fix up review comments
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 0e68637fa4..87ed0e05dc 100644
--- a/src/core/lib/iomgr/timer_manager.cc
+++ b/src/core/lib/iomgr/timer_manager.cc
@@ -93,7 +93,7 @@ static void start_timer_thread_and_unlock(void) {
// to leak through g_completed_threads and be freed in gc_completed_threads()
// before "&ct->t" is written to, causing a use-after-free.
gpr_mu_lock(&g_mu);
- gpr_thd_new(&ct->t, "gpr_timer", timer_thread, ct, &opt);
+ gpr_thd_new(&ct->t, "grpc_global_timer", timer_thread, ct, &opt);
gpr_mu_unlock(&g_mu);
}