I use NDK for Windows, which means that I have to run gdb from cygwin in order to do my own debugging. This works, but there is one thing I cannot understand:
Once the debugger is connected and the process is started for free (for example, I gave gdb a command to continue and there are no breakpoints), how do I interrupt the debuggee process? I understand that for gdb in a normal Linux environment, you do this with Ctrl-c. However, in a Cygwin environment, this seems to kill the (?) Gdb process.
Provided most people probably donβt do NDK debugging on Windows, but it is supported ... the debugger is almost not applicable if you cannot break asynchronously. How can I debug someone?
source share