Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IResumeWithoutSignal.java')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IResumeWithoutSignal.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IResumeWithoutSignal.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IResumeWithoutSignal.java
deleted file mode 100644
index 26699a8d24c..00000000000
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/IResumeWithoutSignal.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- *(c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- *
- */
-package org.eclipse.cdt.debug.core.model;
-
-import org.eclipse.debug.core.DebugException;
-
-/**
- * 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.
- *
- * @since: Feb 4, 2003
- */
-public interface IResumeWithoutSignal
-{
- /**
- * Causes this element to resume its execution ignoring a signal.
- * Has no effect on an element that is not suspended because of a signal.
- *
- * @exception DebugException on failure. Reasons include:
- */
- public void resumeWithoutSignal() throws DebugException;
-
- /**
- * Returns whether this element can currently be resumed without signal.
- *
- * @return whether this element can currently be resumed without signal
- */
- boolean canResumeWithoutSignal();
-}

Back to the top