OLD | NEW |
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 #ifndef FLETCH_TARGET_OS_POSIX | 5 #ifndef FLETCH_TARGET_OS_POSIX |
6 | 6 |
7 #include "src/vm/tick_sampler.h" | 7 #include "src/vm/tick_sampler.h" |
8 | 8 |
9 namespace fletch { | 9 namespace fletch { |
10 | 10 |
11 Atomic<bool> TickSampler::is_active_(false); | 11 Atomic<bool> TickSampler::is_active_(false); |
12 void TickSampler::Setup() {} | 12 void TickSampler::Setup() {} |
13 void TickSampler::Teardown() {} | 13 void TickSampler::Teardown() {} |
14 | 14 |
15 } // namespace fletch | 15 } // namespace fletch |
16 | 16 |
17 #endif // FLETCH_TICK_SAMPLER_MACOS | 17 #endif // FLETCH_TICK_SAMPLER_MACOS |
OLD | NEW |