1 //===-- NativeThreadProtocol.cpp --------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "lldb/Host/common/NativeThreadProtocol.h" 11 12 #include "lldb/Host/common/NativeProcessProtocol.h" 13 #include "lldb/Host/common/NativeRegisterContext.h" 14 #include "lldb/Host/common/SoftwareBreakpoint.h" 15 16 using namespace lldb; 17 using namespace lldb_private; 18 19 NativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol &process, 20 lldb::tid_t tid) 21 : m_process(process), m_tid(tid) {} 22