aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2023-05-02 13:41:07 -0700
committerJim Ingham <jingham@apple.com>2023-05-03 10:52:12 -0700
commitc2be702104284cb3facf31124494b9a400296179 (patch)
tree9601dfe2ef698bb9baf177a4078eba79b597f33e /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
parentcd05ffdbb2c303cbf476a3a48b3f67094d428e37 (diff)
downloadllvm-c2be702104284cb3facf31124494b9a400296179.zip
llvm-c2be702104284cb3facf31124494b9a400296179.tar.gz
llvm-c2be702104284cb3facf31124494b9a400296179.tar.bz2
Allow scripted thread plans to modify the thread stop description when
they are completed.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h')
-rw-r--r--lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
index 21fdf12..b810bdb 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
+++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
@@ -97,6 +97,11 @@ public:
ScriptedThreadPlanGetRunState(StructuredData::ObjectSP implementor_sp,
bool &script_error) override;
+ bool
+ ScriptedThreadPlanGetStopDescription(StructuredData::ObjectSP implementor_sp,
+ lldb_private::Stream *s,
+ bool &script_error) override;
+
StructuredData::GenericSP
CreateScriptedBreakpointResolver(const char *class_name,
const StructuredDataImpl &args_data,