diff options
author | Jim Ingham <jingham@apple.com> | 2023-05-02 13:41:07 -0700 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2023-05-03 10:52:12 -0700 |
commit | c2be702104284cb3facf31124494b9a400296179 (patch) | |
tree | 9601dfe2ef698bb9baf177a4078eba79b597f33e /lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | |
parent | cd05ffdbb2c303cbf476a3a48b3f67094d428e37 (diff) | |
download | llvm-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/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp')
-rw-r--r-- | lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp index 4b56219..2883b39 100644 --- a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp +++ b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp @@ -107,6 +107,14 @@ bool lldb_private::LLDBSWIGPythonCallThreadPlan(void *implementor, return false; } +bool +lldb_private::LLDBSWIGPythonCallThreadPlan(void *implementor, + const char *method_name, + Stream *event_sp, + bool &got_error) { + return false; +} + python::PythonObject lldb_private::LLDBSwigPythonCreateScriptedBreakpointResolver( const char *python_class_name, const char *session_dictionary_name, |