1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Added the 'getCurrentThread' method.

This commit is contained in:
Mikhail Khodjaiants 2002-08-27 21:00:31 +00:00
parent 6bdfb48841
commit 5f1ed1e7ec

View file

@ -215,4 +215,12 @@ public interface ICDITarget extends ICDIObject {
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
void finish() throws CDIException; 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;
} }