diff options
author | Jim Ingham <jingham@apple.com> | 2012-10-16 21:41:58 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-10-16 21:41:58 +0000 |
commit | 35e1bda6957bb7e5d26f6a50e473ca3aa22a1386 (patch) | |
tree | 8ae0c9392cf55fc5c112148231d78729935de8e9 /lldb/scripts/lldb.swig | |
parent | 02a1141e5a36928f7a0ac9d2e0ee44dca3be3a01 (diff) | |
download | bcm5719-llvm-35e1bda6957bb7e5d26f6a50e473ca3aa22a1386.tar.gz bcm5719-llvm-35e1bda6957bb7e5d26f6a50e473ca3aa22a1386.zip |
Add the ability to set timeout & "run all threads" options both from the "expr" command and from
the SB API's that evaluate expressions.
<rdar://problem/12457211>
llvm-svn: 166062
Diffstat (limited to 'lldb/scripts/lldb.swig')
-rw-r--r-- | lldb/scripts/lldb.swig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/scripts/lldb.swig b/lldb/scripts/lldb.swig index 12dc859e105..a89b6758e00 100644 --- a/lldb/scripts/lldb.swig +++ b/lldb/scripts/lldb.swig @@ -66,6 +66,7 @@ import os #include "lldb/API/SBDeclaration.h" #include "lldb/API/SBError.h" #include "lldb/API/SBEvent.h" +#include "lldb/API/SBExpressionOptions.h" #include "lldb/API/SBFileSpec.h" #include "lldb/API/SBFileSpecList.h" #include "lldb/API/SBFrame.h" @@ -125,6 +126,7 @@ import os %include "./Python/interface/SBDeclaration.i" %include "./Python/interface/SBError.i" %include "./Python/interface/SBEvent.i" +%include "./Python/interface/SBExpressionOptions.i" %include "./Python/interface/SBFileSpec.i" %include "./Python/interface/SBFileSpecList.i" %include "./Python/interface/SBFrame.i" |