diff options
Diffstat (limited to 'lldb/include/lldb/Utility/Timer.h')
-rw-r--r-- | lldb/include/lldb/Utility/Timer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/include/lldb/Utility/Timer.h b/lldb/include/lldb/Utility/Timer.h index 0d2e8d8c3e5..ad9421a75b1 100644 --- a/lldb/include/lldb/Utility/Timer.h +++ b/lldb/include/lldb/Utility/Timer.h @@ -30,6 +30,8 @@ public: friend class Timer; const char *m_name; std::atomic<uint64_t> m_nanos; + std::atomic<uint64_t> m_nanos_total; + std::atomic<uint64_t> m_count; std::atomic<Category *> m_next; DISALLOW_COPY_AND_ASSIGN(Category); |