Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-debug-dev] Fixes in 1_0_1 branches

Alain Magloire writes:
 > 
 > A few fixes were also put the in the 1_0_1 branch:
 > 
 > - #28881:
 >   void recursive(int x) {
 > 	if (x > 10)
 > 		recursive(++x);
 >   }
 > 
 >   the GDB/MI CDI implementation was tracking the wrong "x" variable, when
 >   it reenters recursive() it was not creating a new "x" variable object
 >   for each new stack.
 > 

Alain, I assume this is not a gdb problem, right?

 > - #28973
 >   GDB/MI  has some undocumented reasons for stopping:
 > 	reason="access-watchpoint-trigger"
 > 	reason="read-watchpoint-trigger"
 >   make the code beware of them.
 > 
 >   the known documented ones:
 > 	reason="watchpoint-trigger"
 > 	reason="watchpoint-scope"
 > 

Shouldn't a gdb bug be filed for these? If there is a discrepancy
between doco and reality, it should be fixed.


thanks
Elena

 > 
 > _______________________________________________
 > cdt-debug-dev mailing list
 > cdt-debug-dev@xxxxxxxxxxx
 > http://dev.eclipse.org/mailman/listinfo/cdt-debug-dev


Back to the top