diff options
Diffstat (limited to 'lldb/source/Core/Timer.cpp')
-rw-r--r-- | lldb/source/Core/Timer.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/source/Core/Timer.cpp b/lldb/source/Core/Timer.cpp index e3d213bced5..60da39b7f19 100644 --- a/lldb/source/Core/Timer.cpp +++ b/lldb/source/Core/Timer.cpp @@ -10,14 +10,16 @@ #include "lldb/Host/Host.h" #include "lldb/Utility/Stream.h" - -#include "llvm/Support/ThreadLocal.h" +#include "lldb/lldb-types.h" // for thread_key_t #include <algorithm> #include <map> #include <mutex> +#include <utility> // for pair #include <vector> +#include <assert.h> // for assert +#include <stdarg.h> // for va_end, va_list, va_start #include <stdio.h> using namespace lldb_private; |