10127ef0fSEd Maste //===-- NativeThreadProtocol.cpp --------------------------------*- C++ -*-===// 20127ef0fSEd Maste // 30127ef0fSEd Maste // The LLVM Compiler Infrastructure 40127ef0fSEd Maste // 50127ef0fSEd Maste // This file is distributed under the University of Illinois Open Source 60127ef0fSEd Maste // License. See LICENSE.TXT for details. 70127ef0fSEd Maste // 80127ef0fSEd Maste //===----------------------------------------------------------------------===// 90127ef0fSEd Maste 101c3bbb01SEd Maste #include "lldb/Host/common/NativeThreadProtocol.h" 110127ef0fSEd Maste 121c3bbb01SEd Maste #include "lldb/Host/common/NativeProcessProtocol.h" 131c3bbb01SEd Maste #include "lldb/Host/common/NativeRegisterContext.h" 140127ef0fSEd Maste 150127ef0fSEd Maste using namespace lldb; 160127ef0fSEd Maste using namespace lldb_private; 170127ef0fSEd Maste NativeThreadProtocol(NativeProcessProtocol & process,lldb::tid_t tid)18b40b48b8SDimitry AndricNativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol &process, 19435933ddSDimitry Andric lldb::tid_t tid) 20b40b48b8SDimitry Andric : m_process(process), m_tid(tid) {} 21