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/Python/interface/SBFrame.i | |
parent | 02a1141e5a36928f7a0ac9d2e0ee44dca3be3a01 (diff) | |
download | llvm-35e1bda6957bb7e5d26f6a50e473ca3aa22a1386.zip llvm-35e1bda6957bb7e5d26f6a50e473ca3aa22a1386.tar.gz llvm-35e1bda6957bb7e5d26f6a50e473ca3aa22a1386.tar.bz2 |
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/Python/interface/SBFrame.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBFrame.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBFrame.i b/lldb/scripts/Python/interface/SBFrame.i index 7d025644..1735dd9 100644 --- a/lldb/scripts/Python/interface/SBFrame.i +++ b/lldb/scripts/Python/interface/SBFrame.i @@ -139,6 +139,9 @@ public: lldb::SBValue EvaluateExpression (const char *expr, lldb::DynamicValueType use_dynamic, bool unwind_on_error); + + lldb::SBValue + EvaluateExpression (const char *expr, SBExpressionOptions &options); %feature("docstring", " /// Gets the lexical block that defines the stack frame. Another way to think |