bmahler commented on a change in pull request #353: hook manager mutex and
global variable enhancement
URL: https://github.com/apache/mesos/pull/353#discussion_r396652595
##########
File path: src/hook/manager.cpp
##########
@@ -47,16 +47,16 @@ using mesos::modules::ModuleManager;
namespace mesos {
namespace internal {
-static std::mutex mutex;
-static LinkedHashMap<string, Hook*> availableHooks;
+static std::mutex *mutex = new(std::mutex);
+static LinkedHashMap<string, Hook*> *availableHooks =
new(LinkedHashMap<string, Hook*>);
Review comment:
We place pointers next to the type:
```
static std::mutex* mutex ...
static LinkedHashMap<string, Hook*>* availableHooks
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services