40 lines · plain
1Python Extensions2=================3 4LLDB provides scriptable extensions to augment the debugger's capabilities.5This gives users the ability to tailor their debugging experience to their own needs.6 7This page describes some of these scripting extensions:8 9Operating System Thread Plugins10-------------------------------11 12.. automodapi:: lldb.plugins.operating_system13 :no-heading:14 :skip: ScriptedThread15 :no-inheritance-diagram:16 17Scripted Process Plugins18-------------------------------19 20.. automodapi:: lldb.plugins.scripted_process21 :no-heading:22 :skip: ABCMeta23 :no-inheritance-diagram:24 25Scripted Platform Plugins26-------------------------------27 28.. automodapi:: lldb.plugins.scripted_platform29 :no-heading:30 :skip: ABCMeta31 :no-inheritance-diagram:32 33Scripted Thread Plan Plugins34-------------------------------35 36.. automodapi:: lldb.plugins.scripted_thread_plan37 :no-heading:38 :no-inheritance-diagram:39 40