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

Provide 2 new method getStackFrames(int low, int hi)

getStackFrameCount();
This commit is contained in:
Alain Magloire 2002-11-14 21:02:51 +00:00
parent 99a0791947
commit 9a302b9897

View file

@ -28,6 +28,25 @@ public interface ICDIThread extends ICDIObject {
*/
ICDIStackFrame[] getStackFrames() throws CDIException;
/**
* Returns the stack frames contained in this thread whose levels
* are between the two arguments(inclusive).
* An empty collection is returned if this thread contains
* no stack frames, or is not currently suspended. Stack frames
* are returned in top down order.
*
* @return a collection of stack frames
* @throws CDIException if this method fails. Reasons include:
*/
ICDIStackFrame[] getStackFrames(int lowFrame, int highFrame) throws CDIException;
/**
* Returns the depth of the stack frames
* @return depth of stack frames
* @throws CDIException if this method fails. Reasons include:
*/
int getStackFrameCount() throws CDIException;
/**
* Set the curretn Stack for the thread.
* @param - ICDIStackFrame