I can tell GDB to return from a function immediately with return, and call a function with call myFunction.
return
call myFunction
But how do I get it break out of th
You can use until to make the loop end.
until
You should give it at the end of the loop.