diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-20 13:56:58 -0800 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-26 17:22:03 -0800 |
commit | b285c2a4ed29a126b5bcfe46e2784bd1870bdf82 (patch) | |
tree | a671ac87427fb63a64f51be260928cb39b8d3737 /src/core/core.h | |
parent | f273959205fbafd80a256117bc53b3c79517cbdb (diff) |
Core: Make PerfStats internally locked
More ergonomic to use and will be required for upcoming changes.
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h index 3efc20c3d..db3b98a05 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -7,7 +7,6 @@ #include <memory> #include <string> #include "common/common_types.h" -#include "common/synchronized_wrapper.h" #include "core/memory.h" #include "core/perf_stats.h" @@ -94,7 +93,7 @@ public: return *cpu_core; } - Common::SynchronizedWrapper<PerfStats> perf_stats; + PerfStats perf_stats; private: /** |