diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-07-10 00:47:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-10 00:47:05 -0400 |
| commit | c765d5be0bf77af65b254db09997d47a9bddd46e (patch) | |
| tree | b5b0df7ce3ece41a4f1e661a725074ab3100f6ab /src/core/core_timing.h | |
| parent | 313f047f974249c0fa004056ced3f18a8c61eae4 (diff) | |
| parent | d3cb9201f1d34dd804a90cfe1f17142e5f4fa3b7 (diff) | |
Merge pull request #8531 from FernandoS27/core-timing-fix-reg
Core timing: use only one thread.
Diffstat (limited to 'src/core/core_timing.h')
| -rw-r--r-- | src/core/core_timing.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h index a86553e08..c52bffb3b 100644 --- a/src/core/core_timing.h +++ b/src/core/core_timing.h @@ -32,7 +32,6 @@ struct EventType { TimedCallback callback; /// A pointer to the name of the event. const std::string name; - mutable std::mutex guard; }; /** @@ -157,7 +156,6 @@ private: std::condition_variable wait_pause_cv; std::condition_variable wait_signal_cv; mutable std::mutex event_mutex; - mutable std::mutex sequence_mutex; std::atomic<bool> paused_state{}; bool is_paused{}; |
