It's enough to document a variable in one place

Let's not have slightly different documentation for the same variables
in the SigUtil.hpp and SigUtil.cpp files. That is just silly.
This commit is contained in:
Tor Lillqvist
2018-10-15 16:23:25 +03:00
parent e9acbe175d
commit f40e05de42

View File

@ -36,13 +36,10 @@
#include "Common.hpp"
#include "Log.hpp"
/// Flag to request hard termination.
std::atomic<bool> TerminationFlag(false);
/// Flag to request dumping of all internal state
std::atomic<bool> DumpGlobalState(false);
#ifndef MOBILEAPP
/// Flag to request WSD to notify clients and shutdown.
std::atomic<bool> ShutdownRequestFlag(false);
std::mutex SigHandlerTrap;