Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2011-11-14 21:31:20 +0400
committerChristopher Faylor <me@cgf.cx>2011-11-14 21:31:20 +0400
commit07e7349db295636bb0c8317a577a0795443b20c4 (patch)
tree875e7edc5228c122fd67b4351a5960e6dc06c177 /winsup/utils/strace.cc
parent18eaa70b5bc48e4ac8ae880cfb2fd7b9ad8adea6 (diff)
* strace.cc (handle_output_debug_string): Disable code which attempted to add
stuff in between '****' blocks since they no longer are the first thing output by an straced process.
Diffstat (limited to 'winsup/utils/strace.cc')
-rw-r--r--winsup/utils/strace.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/utils/strace.cc b/winsup/utils/strace.cc
index 20f703822..2aea8a982 100644
--- a/winsup/utils/strace.cc
+++ b/winsup/utils/strace.cc
@@ -525,6 +525,9 @@ handle_output_debug_string (DWORD id, LPVOID p, unsigned mask, FILE *ofile)
usecs = dusecs;
}
+#if 1
+ child->saw_stars = 2;
+#else
if (child->saw_stars == 0)
{
FILETIME st;
@@ -582,6 +585,7 @@ handle_output_debug_string (DWORD id, LPVOID p, unsigned mask, FILE *ofile)
}
}
}
+#endif
long long d = usecs - child->last_usecs;
char intbuf[40];