Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Any Android JNI developer should be familiar with this wonderful message in logcat. My question is: how can I tell the VM to dump current table state? I need it for debugging purposes to make sure that native threads at exit have no outstanding local references.

share|improve this question

1 Answer

up vote 1 down vote accepted

In case somebody needs to do something similar, you can use dumpReferenceTables from dalvik.system.VMDebug

share|improve this answer
Did this work for you? I can't find a way to dump the reference table to the log. – Rafa Jan 14 at 15:54
yes, it worked very well. That's why I posted it for reference in case if somebody needs to do something like that. Check docs of VMDebug, you'll need to access java code from c++ and you'll be able to dump JNi table to logcat – Pavel Jan 14 at 16:03
I can't find the class dalvik.system.VMDebug. Did you have to include something in your project to get it ? – Rafa Jan 14 at 17:54
1  
@Rafa it's not a c/c++ thing. You have to FindClass, then retrieve function pointers and call them from c/c++ using JNI. – Pavel Jan 14 at 18:07
I understand that... the thing is that i don't see this class on the Java side. I'm just trying to do that there and it fails. – Rafa Jan 14 at 19:05
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.