Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] DSF: cannot pause a program


SIGKILL usually reserved as last measure because it cannot be handled - therefore process cannot clean up. SIGTERM is a proper one to terminate a process.
For pausing gdb session SIGINT is the correct one.


The fix I'm working on involves actually sending a SIGKILL to the cygwin process when Spawner.kill() is called. Currently, calling Spawner.kill() and Spawner.terminate() do exactly the same thing--send a SIGTERM, which seems wrong to me.

John


------------------------------------------------------------------------

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev


Back to the top