aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/windows/HostThreadWindows.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/windows/HostThreadWindows.h')
-rw-r--r--include/lldb/Host/windows/HostThreadWindows.h30
1 files changed, 14 insertions, 16 deletions
diff --git a/include/lldb/Host/windows/HostThreadWindows.h b/include/lldb/Host/windows/HostThreadWindows.h
index e0c78c37d69a..2acc28e29b5c 100644
--- a/include/lldb/Host/windows/HostThreadWindows.h
+++ b/include/lldb/Host/windows/HostThreadWindows.h
@@ -14,28 +14,26 @@
#include "llvm/ADT/SmallString.h"
-namespace lldb_private
-{
+namespace lldb_private {
-class HostThreadWindows : public HostNativeThreadBase
-{
- DISALLOW_COPY_AND_ASSIGN(HostThreadWindows);
+class HostThreadWindows : public HostNativeThreadBase {
+ DISALLOW_COPY_AND_ASSIGN(HostThreadWindows);
- public:
- HostThreadWindows();
- HostThreadWindows(lldb::thread_t thread);
- virtual ~HostThreadWindows();
+public:
+ HostThreadWindows();
+ HostThreadWindows(lldb::thread_t thread);
+ virtual ~HostThreadWindows();
- void SetOwnsHandle(bool owns);
+ void SetOwnsHandle(bool owns);
- virtual Error Join(lldb::thread_result_t *result);
- virtual Error Cancel();
- virtual void Reset();
+ virtual Error Join(lldb::thread_result_t *result);
+ virtual Error Cancel();
+ virtual void Reset();
- lldb::tid_t GetThreadId() const;
+ lldb::tid_t GetThreadId() const;
- private:
- bool m_owns_handle;
+private:
+ bool m_owns_handle;
};
}