You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@geode.apache.org by GitBox <gi...@apache.org> on 2022/02/04 15:43:28 UTC

[GitHub] [geode-native] mmartell commented on a change in pull request #918: GEODE-10016: Add map of threadId to threadName

mmartell commented on a change in pull request #918:
URL: https://github.com/apache/geode-native/pull/918#discussion_r799580487



##########
File path: cppcache/src/DistributedSystemImpl.cpp
##########
@@ -38,6 +38,10 @@
 #include "util/Log.hpp"
 #include "version.h"
 
+namespace {
+std::map<std::thread::id, std::string> m_threadNames;

Review comment:
       I'm using this anonymous namespace to solve an apparent linking issue. Without it, this map is an unresolved reference in the clicache. Do you know of another way to solve that?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@geode.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org