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 the program and GDB exit. All the help on this subject seems to assume I'm on Linux.
|
|
Which "shell" are you using? If you use the MSYS "rxvt" shell, the behavior is pretty much as you describe. Ctrl-C only works if you are running from a normal Windows command prompt. |
||||
|
|
|
To find the infinite loop, you could try stepping through the execution until you get to a sequence that repeats indefinitely. I'm not sure, but I think Ctrl-C should only stop the execution, not gdb itself... I think there is a "handle" command that you can use to control how the interrupt signal is handled. |
||||
|
