diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:26:05 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:26:05 +0000 |
| commit | 14f1b3e8826ce43b978db93a62d1166055db5394 (patch) | |
| tree | 0a00ad8d3498783fe0193f3b656bca17c4c8697d /include/lldb/Host/linux/HostThreadLinux.h | |
| parent | 4ee8c119c71a06dcad1e0fecc8c675e480e59337 (diff) | |
Notes
Diffstat (limited to 'include/lldb/Host/linux/HostThreadLinux.h')
| -rw-r--r-- | include/lldb/Host/linux/HostThreadLinux.h | 18 |
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); }; } |
