natVMVirtualMachine.cc (getFrameCount): Implement.
2007-02-02 Kyle Galloway <kgallowa@redhat.com> * gnu/classpath/jdwp/natVMVirtualMachine.cc (getFrameCount): Implement. From-SVN: r121504
This commit is contained in:
parent
311635d103
commit
c9d607421c
2 changed files with 13 additions and 2 deletions
|
@ -367,9 +367,16 @@ getFrame (MAYBE_UNUSED Thread *thread, MAYBE_UNUSED::java::nio::ByteBuffer *bb)
|
|||
|
||||
jint
|
||||
gnu::classpath::jdwp::VMVirtualMachine::
|
||||
getFrameCount (MAYBE_UNUSED Thread *thread)
|
||||
getFrameCount (Thread *thread)
|
||||
{
|
||||
return 0;
|
||||
jint frame_count;
|
||||
|
||||
jvmtiError jerr = _jdwp_jvmtiEnv->GetFrameCount (thread, &frame_count);
|
||||
|
||||
if (jerr != JVMTI_ERROR_NONE)
|
||||
throw_jvmti_error (jerr);
|
||||
|
||||
return frame_count;
|
||||
}
|
||||
|
||||
jint
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue