1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

new method getCurrentStackFrame()

This commit is contained in:
Alain Magloire 2003-01-27 03:28:40 +00:00
parent 115b042005
commit 61d1cb0d3d

View file

@ -54,6 +54,11 @@ public interface ICDIThread extends ICDIObject {
*/
void setCurrentStackFrame(ICDIStackFrame current) throws CDIException;
/**
* Set the current stackframe.
* @return ICDIStackFrame
*/
ICDIStackFrame getCurrentStackFrame() throws CDIException;
/**
* Returns whether this thread is currently suspended.
*
@ -138,4 +143,5 @@ public interface ICDIThread extends ICDIObject {
* Returns true if the threads are the same.
*/
boolean equals(ICDIThread thead);
}