[Lldb-commits] [lldb] r133061 - /lldb/trunk/www/scripting.html
Caroline Tice
ctice at apple.com
Wed Jun 15 09:37:40 PDT 2011
Author: ctice
Date: Wed Jun 15 11:37:40 2011
New Revision: 133061
URL: http://llvm.org/viewvc/llvm-project?rev=133061&view=rev
Log:
Add an introduction to the scripting example web page.
Modified:
lldb/trunk/www/scripting.html
Modified: lldb/trunk/www/scripting.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/scripting.html?rev=133061&r1=133060&r2=133061&view=diff
==============================================================================
--- lldb/trunk/www/scripting.html (original)
+++ lldb/trunk/www/scripting.html Wed Jun 15 11:37:40 2011
@@ -16,6 +16,22 @@
<!--#include virtual="sidebar.incl"-->
<div id="middle">
<div class="post">
+ <h1 class ="postheader">Introduction</h1>
+ <div class="postcontent">
+
+ <p>LLDB has been structured from the beginning to be scriptable in two ways
+ -- a Unix Python session can initiate/run a debug session non-interactively
+ using LLDB; and within the LLDB debugger tool, Python scripts can be used to
+ help with many tasks, including inspecting program data, iterating over
+ containers and determining if a breakpoint should stop execution or continue.
+ This document will show how to do some of these things by going through an
+ example, explaining how to use Python scripting to find a bug in a program
+ that searches for text in a large binary tree.</p>
+
+ </div>
+ <div class="postfooter"></div>
+
+ <div class="post">
<h1 class ="postheader">The Test Program and Input</h1>
<div class="postcontent">
More information about the lldb-commits
mailing list