Index: gdb/win32-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/win32-nat.c,v
retrieving revision 1.122
diff -u -b -B -r1.122 win32-nat.c
--- gdb/win32-nat.c	10 Apr 2006 21:43:45 -0000	1.122
+++ gdb/win32-nat.c	29 May 2006 11:19:49 -0000
@@ -927,7 +927,12 @@
     /* nothing to do */;
   else if (strncmp (s, _CYGWIN_SIGNAL_STRING, sizeof (_CYGWIN_SIGNAL_STRING) - 1) != 0)
     {
-      if (strncmp (s, "cYg", 3) != 0)
+      if (strncmp (s, "cYg", 3) == 0) 
+        {
+          char *p = strchr(s+12,' '); // skip 'cYgxxxxxxxx <category>'
+          printf_unfiltered ("strace: %s", p ? p+1 : s+12); 
+        }
+      else 
 	warning (("%s"), s);
     }
 #ifdef __COPY_CONTEXT_SIZE
