org.eclipse.cdt.debug.core.model
Interface IResumeWithoutSignal

All Known Subinterfaces:
ICDebugTarget
All Known Implementing Classes:
CCoreFileDebugTarget, CDebugTarget, CStackFrame, CThread

public interface IResumeWithoutSignal

Provides the ability to resume execution without giving a signal. This is useful when the program stopped on account of a signal and would ordinary see the signal when resumed.


Method Summary
 boolean canResumeWithoutSignal()
          Returns whether this element can currently be resumed without signal.
 void resumeWithoutSignal()
          Causes this element to resume its execution ignoring a signal.
 

Method Detail

resumeWithoutSignal

void resumeWithoutSignal()
                         throws org.eclipse.debug.core.DebugException
Causes this element to resume its execution ignoring a signal. Has no effect on an element that is not suspended because of a signal.

Throws:
org.eclipse.debug.core.DebugException - on failure. Reasons include:

canResumeWithoutSignal

boolean canResumeWithoutSignal()
Returns whether this element can currently be resumed without signal.

Returns:
whether this element can currently be resumed without signal