LLDB mainline
NativeRegisterContextNetBSD.cpp
Go to the documentation of this file.
1//===-- NativeRegisterContextNetBSD.cpp -----------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
12
14
15using namespace lldb_private;
16using namespace lldb_private::process_netbsd;
17
18// clang-format off
19#include <sys/types.h>
20#include <sys/ptrace.h>
21// clang-format on
22
24 return NativeProcessNetBSD::PtraceWrapper(ptrace_req, GetProcessPid(), buf,
25 m_thread.GetID());
26}
27
29 return static_cast<NativeProcessNetBSD &>(m_thread.GetProcess());
30}
31
33 return GetProcess().GetID();
34}
NativeProcessProtocol & GetProcess()
An error handling class.
Definition: Status.h:44
Manages communication with the inferior (debugee) process.
static Status PtraceWrapper(int req, lldb::pid_t pid, void *addr=nullptr, int data=0, int *result=nullptr)
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14