* win32-nat.c (child_attach): Reset saw_create counter or subsequent attach
authorChristopher Faylor <me+cygwin@cgf.cx>
Sat, 23 Nov 2002 02:49:45 +0000 (02:49 +0000)
committerChristopher Faylor <me+cygwin@cgf.cx>
Sat, 23 Nov 2002 02:49:45 +0000 (02:49 +0000)
will hang.

gdb/ChangeLog
gdb/win32-nat.c
gdb/windows-nat.c

index 9821418..fccad27 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-22  Christopher Faylor  <cgf@redhat.com>
+
+       * win32-nat.c (child_attach): Reset saw_create counter or subsequent
+       attach will hang.
+
 2002-11-22  Andrew Cagney  <ac131313@redhat.com>
 
        * gdbarch.sh (FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS): Default
index 8f9697a..f3fb0a7 100644 (file)
@@ -1386,6 +1386,7 @@ child_attach (char *args, int from_tty)
 
   pid = strtoul (args, 0, 0);
   ok = DebugActiveProcess (pid);
+  saw_create = 0;
 
   if (!ok)
     error ("Can't attach to process.");
index 8f9697a..f3fb0a7 100644 (file)
@@ -1386,6 +1386,7 @@ child_attach (char *args, int from_tty)
 
   pid = strtoul (args, 0, 0);
   ok = DebugActiveProcess (pid);
+  saw_create = 0;
 
   if (!ok)
     error ("Can't attach to process.");