0, I have the code, that : main call L1, L1 call L2, ...., like:
main ()
{
L1();
}
L1()
{
L2();
}
L2()
{
L3();
}
L3()
{
int a;
int b = a;
}
/////////////
1. now I debug (step) those code, ....and I step into L3, the cursor now at the line : "int a;"
2. I open the "Call stack" (debug -> debugging windows -> call stack) .... !!! now the cursor position wil MOVE TO the L2.
3. I press the F7, the position move to "int b = a;", AND ! as soon as, it come back to "L2()"...
sorry for my pool English!
who can help me ? thanks!
//////////////////
windows xp;
gdb 5.2.1
g++ 3.4.5