aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/linux/HostThreadLinux.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/linux/HostThreadLinux.h')
-rw-r--r--include/lldb/Host/linux/HostThreadLinux.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/include/lldb/Host/linux/HostThreadLinux.h b/include/lldb/Host/linux/HostThreadLinux.h
index 9091f41dae47..ddfa8633ffed 100644
--- a/include/lldb/Host/linux/HostThreadLinux.h
+++ b/include/lldb/Host/linux/HostThreadLinux.h
@@ -12,20 +12,18 @@
#include "lldb/Host/posix/HostThreadPosix.h"
-#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/SmallString.h"
+#include "llvm/ADT/StringRef.h"
-namespace lldb_private
-{
+namespace lldb_private {
-class HostThreadLinux : public HostThreadPosix
-{
- public:
- HostThreadLinux();
- HostThreadLinux(lldb::thread_t thread);
+class HostThreadLinux : public HostThreadPosix {
+public:
+ HostThreadLinux();
+ HostThreadLinux(lldb::thread_t thread);
- static void SetName(lldb::thread_t thread, llvm::StringRef name);
- static void GetName(lldb::thread_t thread, llvm::SmallVectorImpl<char> &name);
+ static void SetName(lldb::thread_t thread, llvm::StringRef name);
+ static void GetName(lldb::thread_t thread, llvm::SmallVectorImpl<char> &name);
};
}