10#include "lldb/Host/Config.h"
23ScriptInterpreterPythonInterfaces::GetPluginDescriptionStatic() {
24 return "Script Interpreter Python Interfaces";
27void ScriptInterpreterPythonInterfaces::Initialize() {
28 OperatingSystemPythonInterface::Initialize();
29 ScriptedPlatformPythonInterface::Initialize();
30 ScriptedProcessPythonInterface::Initialize();
31 ScriptedThreadPlanPythonInterface::Initialize();
34void ScriptInterpreterPythonInterfaces::Terminate() {
35 OperatingSystemPythonInterface::Terminate();
36 ScriptedPlatformPythonInterface::Terminate();
37 ScriptedProcessPythonInterface::Terminate();
38 ScriptedThreadPlanPythonInterface::Terminate();
#define LLDB_PLUGIN_DEFINE(PluginName)
A class that represents a running process on the host machine.