Autoswitch is useful when the debugger stops on a frame that doesn't have source/line info.
The C::B automatically switches to the first frame with valid source/line info.
int main()
{
while(1)
sleep(10);
return 0;
}
Run this code with the debugger and hit the pause button.