aboutsummaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorCaroline Tice <ctice@apple.com>2011-06-15 16:37:40 +0000
committerCaroline Tice <ctice@apple.com>2011-06-15 16:37:40 +0000
commitef3735a3f81cfe25d7dc11e687513cf2b567cf3b (patch)
tree4298540032f768fe20acd46d6dfc9fa8cdbe2b73 /www
parent7af2f026517eef55cbb607bd4726193081212787 (diff)
downloadlldb-ef3735a3f81cfe25d7dc11e687513cf2b567cf3b.tar.gz
Add an introduction to the scripting example web page.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@133061 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www')
-rwxr-xr-xwww/scripting.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/www/scripting.html b/www/scripting.html
index fb7dc573a..dfd858abd 100755
--- a/www/scripting.html
+++ b/www/scripting.html
@@ -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">