Renamed Linux to GNU/Linux and other tidying

This commit is contained in:
Nav
2022-06-01 21:48:27 +01:00
parent ec9068ba42
commit dd204742d3
10 changed files with 28 additions and 26 deletions

View File

@@ -27,9 +27,9 @@ namespace Bloom
private:
/**
* Mapping of signal numbers to functions.
* Mapping of signal numbers to handler functions.
*/
std::map<int, std::function<void()>> handlersMappedBySignalNum;
std::map<int, std::function<void()>> handlersBySignalNum;
/**
* We keep record of the number of shutdown signals received. See definition of triggerApplicationShutdown()
@@ -49,7 +49,7 @@ namespace Bloom
*
* @return
*/
[[nodiscard]] sigset_t getRegisteredSignalSet() const;
[[nodiscard]] ::sigset_t getRegisteredSignalSet() const;
/**
* Handler for SIGINT, SIGTERM, etc signals.