1 //===-- NativeRegisterContextNetBSD.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 "NativeRegisterContextNetBSD.h"
11 
12 using namespace lldb_private;
13 using namespace lldb_private::process_netbsd;
14 
15 NativeRegisterContextNetBSD::NativeRegisterContextNetBSD(
16     NativeThreadProtocol &native_thread, uint32_t concrete_frame_idx,
17     RegisterInfoInterface *reg_info_interface_p)
18     : NativeRegisterContextRegisterInfo(native_thread, concrete_frame_idx,
19                                         reg_info_interface_p) {}
20