Can someone explain how to send a signal to a process debugged in an Eclipse CDT using GDB (DSF)? Apparently, the Signals view in Eclipse (Junon) is no longer in use, and I'm pretty inexperienced in debugging with Eclipse + CDT.
One thing you could try is to find the process id from the terminal window using ps -ef . Then use the kill command to send a signal from the terminal window, for example. kill -2 <id> will send SIGINT to the process.
ps -ef
kill
kill -2 <id>