Skip to content

Commit

Permalink
Merge pull request grpc#14606 from vjpai/threadname
Browse files Browse the repository at this point in the history
Fix a thread name
  • Loading branch information
vjpai committed Mar 6, 2018
2 parents cab01db + 02b64f5 commit 2377688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/server/dynamic_thread_pool.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace grpc {

DynamicThreadPool::DynamicThread::DynamicThread(DynamicThreadPool* pool)
: pool_(pool),
thd_("dynamic thread pool thread",
thd_("grpcpp_dynamic_pool",
[](void* th) {
static_cast<DynamicThreadPool::DynamicThread*>(th)->ThreadFunc();
},
Expand Down

0 comments on commit 2377688

Please sign in to comment.