Author: labath Date: Thu May 10 05:02:24 2018 New Revision: 331977 URL: http://llvm.org/viewvc/llvm-project?rev=331977&view=rev Log: Fix one more RunShellcommand occurence in mac code
Modified: lldb/trunk/source/Host/macosx/Host.mm Modified: lldb/trunk/source/Host/macosx/Host.mm URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/macosx/Host.mm?rev=331977&r1=331976&r2=331977&view=diff ============================================================================== --- lldb/trunk/source/Host/macosx/Host.mm (original) +++ lldb/trunk/source/Host/macosx/Host.mm Thu May 10 05:02:24 2018 @@ -1554,7 +1554,8 @@ Status Host::ShellExpandArguments(Proces launch_info.SetWorkingDirectory(working_dir); } } - RunShellCommand(expand_command, cwd, &status, nullptr, &output, 10); + RunShellCommand(expand_command, cwd, &status, nullptr, &output, + std::chrono::seconds(10)); if (status != 0) { error.SetErrorStringWithFormat("lldb-argdumper exited with error %d", _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits