Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Process/Utility/NativeProcessSoftwareSingleStep.h
39644 views
//===-- NativeProcessSoftwareSingleStep.h -----------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef lldb_NativeProcessSoftwareSingleStep_h9#define lldb_NativeProcessSoftwareSingleStep_h1011#include "lldb/Host/common/NativeProcessProtocol.h"12#include "lldb/Host/common/NativeThreadProtocol.h"1314#include <map>1516namespace lldb_private {1718class NativeProcessSoftwareSingleStep {19public:20Status SetupSoftwareSingleStepping(NativeThreadProtocol &thread);2122protected:23// List of thread ids stepping with a breakpoint with the address of24// the relevan breakpoint25std::map<lldb::tid_t, lldb::addr_t> m_threads_stepping_with_breakpoint;26};2728} // namespace lldb_private2930#endif // #ifndef lldb_NativeProcessSoftwareSingleStep_h313233