diff options
| author | Enrico Granata <egranata@apple.com> | 2012-07-16 23:10:35 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2012-07-16 23:10:35 +0000 |
| commit | 3372f581eb8bb97fddc316c79f48808ca3db245d (patch) | |
| tree | bed6ebb41ff318888ebe58194e228821e486c9dc /lldb/source/Interpreter | |
| parent | 482fb19fd52d2f1c3817d475bbe7d7df532fe1c4 (diff) | |
| download | bcm5719-llvm-3372f581eb8bb97fddc316c79f48808ca3db245d.tar.gz bcm5719-llvm-3372f581eb8bb97fddc316c79f48808ca3db245d.zip | |
<rdar://problem/11672978> Fixing an issue where an ObjC object might come out without a description because the expression used to obtain it would timeout before running to completion
llvm-svn: 160326
Diffstat (limited to 'lldb/source/Interpreter')
| -rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 2879ec45f8f..b807e61bc18 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -1162,7 +1162,8 @@ CommandInterpreter::PreprocessCommand (std::string &command) unwind_on_error, keep_in_memory, eNoDynamicValues, - expr_result_valobj_sp); + expr_result_valobj_sp, + 0 /* no timeout */); if (expr_result == eExecutionCompleted) { Scalar scalar; |

