#include "lldb/Target/SystemRuntime.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Target/Process.h"
#include "lldb/lldb-private.h"
usingnamespacelldb;
usingnamespacelldb_private;
SystemRuntime *SystemRuntime::FindPlugin(Process *process) { … }
SystemRuntime::SystemRuntime(Process *process) : … { … }
SystemRuntime::~SystemRuntime() = default;
void SystemRuntime::DidAttach() { … }
void SystemRuntime::DidLaunch() { … }
void SystemRuntime::Detach() { … }
void SystemRuntime::ModulesDidLoad(const ModuleList &module_list) { … }
const std::vector<ConstString> &SystemRuntime::GetExtendedBacktraceTypes() { … }
ThreadSP SystemRuntime::GetExtendedBacktraceThread(ThreadSP thread,
ConstString type) { … }