[Lldb-commits] [lldb] r289023 - Increase timeout for Frontboard app launch request from 9 to 20 seconds

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 7 21:12:45 PST 2016


Author: jmolenda
Date: Wed Dec  7 23:12:45 2016
New Revision: 289023

URL: http://llvm.org/viewvc/llvm-project?rev=289023&view=rev
Log:
Increase timeout for Frontboard app launch request from 9 to 20 seconds
to match other timeouts.

Modified:
    lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm

Modified: lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm?rev=289023&r1=289022&r2=289023&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm (original)
+++ lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm Wed Dec  7 23:12:45 2016
@@ -157,7 +157,7 @@ static bool CallBoardSystemServiceOpenAp
 
   ];
 
-  const uint32_t timeout_secs = 9;
+  const uint32_t timeout_secs = 20;
 
   dispatch_time_t timeout =
       dispatch_time(DISPATCH_TIME_NOW, timeout_secs * NSEC_PER_SEC);




More information about the lldb-commits mailing list