summaryrefslogtreecommitdiff
path: root/source/Plugins/Process/Windows/Common/TargetThreadWindows.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Plugins/Process/Windows/Common/TargetThreadWindows.h')
-rw-r--r--source/Plugins/Process/Windows/Common/TargetThreadWindows.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/source/Plugins/Process/Windows/Common/TargetThreadWindows.h b/source/Plugins/Process/Windows/Common/TargetThreadWindows.h
deleted file mode 100644
index 952c0f55b57f..000000000000
--- a/source/Plugins/Process/Windows/Common/TargetThreadWindows.h
+++ /dev/null
@@ -1,50 +0,0 @@
-//===-- TargetThreadWindows.h -----------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef liblldb_Plugins_Process_Windows_TargetThreadWindows_H_
-#define liblldb_Plugins_Process_Windows_TargetThreadWindows_H_
-
-//#include "ForwardDecl.h"
-#include "lldb/Host/HostThread.h"
-#include "lldb/Target/Thread.h"
-#include "lldb/lldb-forward.h"
-
-#include "RegisterContextWindows.h"
-
-namespace lldb_private {
-class ProcessWindows;
-class HostThread;
-class StackFrame;
-
-class TargetThreadWindows : public lldb_private::Thread {
-public:
- TargetThreadWindows(ProcessWindows &process, const HostThread &thread);
- virtual ~TargetThreadWindows();
-
- // lldb_private::Thread overrides
- void RefreshStateAfterStop() override;
- void WillResume(lldb::StateType resume_state) override;
- void DidStop() override;
- lldb::RegisterContextSP GetRegisterContext() override;
- lldb::RegisterContextSP
- CreateRegisterContextForFrame(StackFrame *frame) override;
- bool CalculateStopInfo() override;
- Unwind *GetUnwinder() override;
-
- Status DoResume();
-
- HostThread GetHostThread() const { return m_host_thread; }
-
-private:
- lldb::RegisterContextSP m_thread_reg_ctx_sp;
- HostThread m_host_thread;
-};
-} // namespace lldb_private
-
-#endif