]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - source/Host/common/NativeThreadProtocol.cpp
Vendor import of lldb trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / source / Host / common / NativeThreadProtocol.cpp
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
18 NativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol &process,
19                                            lldb::tid_t tid)
20     : m_process(process), m_tid(tid) {}