I\'m on Windows, running GDB on an executable built under MinGW. The program has an infinite loop. I want to find it by hitting Ctrl + C. When I do, both t
This is because GDB doesn't handle the Ctrl + C event of the GUI (non-console) program properly.
You can find the workaround in Workaround for GDB Ctrl-C Interrupt.