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

Added the 'stepReturn' method.

This commit is contained in:
Mikhail Khodjaiants 2002-08-20 18:26:48 +00:00
parent 61b492d5c7
commit ce4762cf93
2 changed files with 16 additions and 0 deletions

View file

@ -167,6 +167,14 @@ public interface ICDITarget extends ICDIObject {
*/ */
void suspend() throws CDIException; void suspend() throws CDIException;
/**
* Steps to the next return statement in the current scope. Can
* only be called when the associated thread is suspended.
*
* @throws CDIException if this method fails. Reasons include:
*/
void stepReturn() throws CDIException;
/** /**
* Steps over the current source line. Can only be called * Steps over the current source line. Can only be called
* when the associated target is suspended. * when the associated target is suspended.

View file

@ -51,6 +51,14 @@ public interface ICDIThread extends ICDIObject {
*/ */
void suspend() throws CDIException; void suspend() throws CDIException;
/**
* Steps to the next return statement in the current scope. Can
* only be called when the associated thread is suspended.
*
* @throws CDIException if this method fails. Reasons include:
*/
void stepReturn() throws CDIException;
/** /**
* Steps over the current source line. Can only be called * Steps over the current source line. Can only be called
* when the associated thread is suspended. * when the associated thread is suspended.