|
From: <sv...@va...> - 2016-10-01 14:11:05
|
Author: philippe
Date: Sat Oct 1 15:10:59 2016
New Revision: 16000
Log:
Well, 5 seconds is too short for me to type a attach pid command
so increase to 8 seconds.
Modified:
trunk/coregrind/m_main.c
Modified: trunk/coregrind/m_main.c
==============================================================================
--- trunk/coregrind/m_main.c (original)
+++ trunk/coregrind/m_main.c Sat Oct 1 15:10:59 2016
@@ -2166,7 +2166,7 @@
/* Hook to delay things long enough so we can get the pid and
attach GDB in another shell. */
if (VG_(clo_wait_for_gdb)) {
- const int ms = 5000; // milliseconds
+ const int ms = 8000; // milliseconds
VG_(debugLog)(1, "main", "Wait for GDB during %d ms\n", ms);
VG_(printf)("pid=%d, entering delay %d ms loop\n", VG_(getpid)(), ms);
VG_(poll)(NULL, 0, ms);
|