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/Commands/CommandObjectExpression.cpp | |
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/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 3c04eb35c9f..4fecc6b46b3 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -305,7 +305,8 @@ CommandObjectExpression::EvaluateExpression m_command_options.unwind_on_error, keep_in_memory, use_dynamic, - result_valobj_sp); + result_valobj_sp, + 0 /* no timeout */); if (exe_results == eExecutionInterrupted && !m_command_options.unwind_on_error) { |