summaryrefslogtreecommitdiff
path: root/include/lldb/Host/linux/HostThreadLinux.h
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-01-02 19:26:05 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-01-02 19:26:05 +0000
commit14f1b3e8826ce43b978db93a62d1166055db5394 (patch)
tree0a00ad8d3498783fe0193f3b656bca17c4c8697d /include/lldb/Host/linux/HostThreadLinux.h
parent4ee8c119c71a06dcad1e0fecc8c675e480e59337 (diff)
Notes
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);
};
}