Core: Protect each event from race conditions within it.

This commit is contained in:
Fernando Sahmkow 2021-11-28 13:47:40 +01:00
parent 9cafb0d912
commit 38e4a144a1
2 changed files with 2 additions and 0 deletions

View file

@ -32,6 +32,7 @@ struct EventType {
TimedCallback callback;
/// A pointer to the name of the event.
const std::string name;
mutable std::mutex guard;
};
/**