Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Cancel in FinalLaunchSequence

Hi,

I have implemented by own FinalLaunchSequence (by subclassing the original). It is all working OK, except when a fatal error occurs and I need to cancel the launch.

The problem is that at the point of the fatal error, GDB has been started, but after the error, it is not being closed - I have to close it manually in the UI.

In the handleCancel() method that is repsonding to the fatal error, I am:
	rm.cancel();
	rm.done();

Which does seem to cancel the FinalLaunchSequence, but leaves GDB still running.

Does anybody have some advice on how I can resolve this issue?

Thanks
--
DmSubs



Back to the top