+2006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
+
+ * server.c (attach_inferior): Return SIGTRAP for a successful
+ attach.
+
2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
* Makefile.in (OBS): Add version.o.
*sigptr = mywait (statusptr, 0);
+ /* GDB knows to ignore the first SIGSTOP after attaching to a running
+ process using the "attach" command, but this is different; it's
+ just using "target remote". Pretend it's just starting up. */
+ if (*statusptr == 'T' && *sigptr == SIGSTOP)
+ *sigptr = SIGTRAP;
+
return 0;
}