1275072Semaste//===-- NativeThreadProtocol.cpp --------------------------------*- C++ -*-===//
2275072Semaste//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6275072Semaste//
7275072Semaste//===----------------------------------------------------------------------===//
8275072Semaste
9288943Sdim#include "lldb/Host/common/NativeThreadProtocol.h"
10275072Semaste
11288943Sdim#include "lldb/Host/common/NativeProcessProtocol.h"
12288943Sdim#include "lldb/Host/common/NativeRegisterContext.h"
13275072Semaste
14275072Semasteusing namespace lldb;
15275072Semasteusing namespace lldb_private;
16275072Semaste
17321369SdimNativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol &process,
18314564Sdim                                           lldb::tid_t tid)
19321369Sdim    : m_process(process), m_tid(tid) {}
20