LLDB mainline
InstrumentationRuntimeStopInfo.cpp
Go to the documentation of this file.
1//===-- InstrumentationRuntimeStopInfo.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#include "lldb/Target/Process.h"
13#include "lldb/lldb-private.h"
14
15using namespace lldb;
16using namespace lldb_private;
17
19 Thread &thread, std::string description,
20 StructuredData::ObjectSP additional_data)
21 : StopInfo(thread, 0) {
22 m_extended_info = additional_data;
23 m_description = description;
24}
25
27 return m_description.c_str();
28}
29
32 Thread &thread, std::string description,
33 StructuredData::ObjectSP additionalData) {
34 return StopInfoSP(
35 new InstrumentationRuntimeStopInfo(thread, description, additionalData));
36}
static lldb::StopInfoSP CreateStopReasonWithInstrumentationData(Thread &thread, std::string description, StructuredData::ObjectSP additional_data)
InstrumentationRuntimeStopInfo(Thread &thread, std::string description, StructuredData::ObjectSP additional_data)
std::string m_description
Definition: StopInfo.h:185
StructuredData::ObjectSP m_extended_info
Definition: StopInfo.h:190
std::shared_ptr< Object > ObjectSP
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
Definition: lldb-forward.h:419