}
private void executeFrames(ByteBuffer bb, DataOutputStream os)
throws JdwpException, IOException
{
ThreadId tid = (ThreadId) idMan.readObjectId(bb);
Thread thread = tid.getThread();
int startFrame = bb.getInt();
int length = bb.getInt();
ArrayList frames = VMVirtualMachine.getFrames(thread, startFrame, length);
os.writeInt(frames.size());