diff options
Diffstat (limited to 'lldb/source/Commands')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 3 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpoint.cpp | 3 |
2 files changed, 4 insertions, 2 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) { diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index bb7ce45eeaf..973b9d4a385 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()); |