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 15 using namespace lldb; 16 using namespace lldb_private; 17 NativeThreadProtocol(NativeProcessProtocol & process,lldb::tid_t tid)18NativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol &process, 19 lldb::tid_t tid) 20 : m_process(process), m_tid(tid) {} 21