diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java index c4a749ee73a..ec18d619315 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java @@ -215,4 +215,12 @@ public interface ICDITarget extends ICDIObject { * @throws CDIException if this method fails. Reasons include: */ void finish() throws CDIException; + + /** + * Returns the currently selected thread. + * + * @return the currently selected thread + * @throws CDIException if this method fails. Reasons include: + */ + ICDIThread getCurrentThread() throws CDIException; }