Re: What to send in the remote protocol for a breakpoint?

2001-07-12 Thread Lee Merrill
Found the answer: send an S05 packet. This is also the correct response to send for a single-step interrupt, so gdb will process the single-step correctly. Lee ___ Bug-gdb mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-gdb

gdb bug

2001-07-12 Thread Sujit Manolikar
guys i have found a bug in gdb. i am using Win95 version 4.00.950 with 32 mb ram. i am using mingw32 compiler 2.95.2 19991024 (release). my processor is Intel Pentium II 350 mhz. GDB version 4.18 this is what happened: i fired up my gdb. and wanted to see what commands are available. so i

CVS: stepping over function returning float returns NaN with shared pthreads

2001-07-12 Thread Ken Whaley
gdb-5.0rh-11 + CVS i386-tdep.c (works with gdb 5.0) % cat float.c float sub( float a, float b ) { return a-b; } int main( int argc, char **argv ) { float f; f = sub( 5.0, 0.0 ); f = sub( 10.0, 0.0 ); } % gcc -g float.c -o float -lpthread % gdb float GNU gdb Red Hat Linux 7.x