File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 14
14
#include " CpuTscSync.hpp"
15
15
16
16
static CpuTscSyncPlugin *callbackCpuf = nullptr ;
17
+ _Atomic (bool ) CpuTscSyncPlugin::kernel_routed = false ;
17
18
_Atomic (bool ) CpuTscSyncPlugin::tsc_synced = false ;
18
19
_Atomic (bool ) CpuTscSyncPlugin::use_trace_point_method_to_sync = false ;
19
20
_Atomic (bool ) CpuTscSyncPlugin::use_clock_get_calendar_to_sync = false ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class CpuTscSyncPlugin {
23
23
void init ();
24
24
25
25
private:
26
- _Atomic (bool ) kernel_routed = false ;
26
+ static _Atomic (bool ) kernel_routed ;
27
27
static _Atomic (bool ) tsc_synced;
28
28
static _Atomic (bool ) use_trace_point_method_to_sync;
29
29
static _Atomic (bool ) use_clock_get_calendar_to_sync;
You can’t perform that action at this time.
0 commit comments