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/CommandObjectWatchpoint.cpp | |
parent | 482fb19fd52d2f1c3817d475bbe7d7df532fe1c4 (diff) | |
download | llvm-3372f581eb8bb97fddc316c79f48808ca3db245d.zip llvm-3372f581eb8bb97fddc316c79f48808ca3db245d.tar.gz llvm-3372f581eb8bb97fddc316c79f48808ca3db245d.tar.bz2 |
<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/CommandObjectWatchpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpoint.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index bb7ce45..973b9d4 100644 --- a/lldb/source/Commands/CommandObjectWatchpoint.cpp +++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp @@ -1206,7 +1206,8 @@ protected: unwind_on_error, keep_in_memory, eNoDynamicValues, - valobj_sp); + valobj_sp, + 0 /* no timeout */); if (expr_result != eExecutionCompleted) { result.GetErrorStream().Printf("error: expression evaluation of address to watch failed\n"); result.GetErrorStream().Printf("expression evaluated: %s\n", expr_str.c_str()); |