Send signal for processing during debugging with GDB DSF in Eclipse CDT (Juno)

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.

+4
source share
1 answer

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.

+2
source

All Articles