commit | 47beabb1386be44e3f90dbc30a0b22c23b93a4dc | [log] [tgz] |
---|---|---|
author | Jim Ingham <jingham@apple.com> | Tue Oct 16 21:41:58 2012 +0000 |
committer | Jim Ingham <jingham@apple.com> | Tue Oct 16 21:41:58 2012 +0000 |
tree | ea5c24dd345b51a4fc31c0da66f0b38201dfe138 | |
parent | b8fda50a3e97699af76a406f03d139ee1bd94d01 [diff] [blame] |
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> git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@166062 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectExpression.h b/source/Commands/CommandObjectExpression.h index 7c15aa1..4ccadfc 100644 --- a/source/Commands/CommandObjectExpression.h +++ b/source/Commands/CommandObjectExpression.h
@@ -55,6 +55,8 @@ bool unwind_on_error; bool show_types; bool show_summary; + uint32_t timeout; + bool try_all_threads; }; CommandObjectExpression (CommandInterpreter &interpreter);