I'm not looking for the usual "you can only hint the GC in Java using System.gc()" answers, this is not at all what this question is about.

My questions is not subjective and is based on a reality: GC can be forced in Java for a fact. A lot of programs that we use daily do it: IntelliJ IDEA, NetBeans, VisualVM.

They all can force GC to happen.

How is it done?

I take it they're all using JVMTI and more specifically the ForceGarbabeCollection (notice the "Force") but how can I try it for myself?

http://java.sun.com/javase/6/docs/platform/jvmti/jvmti.html#ForceGarbageCollection

Also note that this question is not about "why" I'd want to do this: the "why" may be "curiosity" or "we're writing a program similar to VisualVM", etc.

The question is really "how do you force a GC using JVMTI's ForceGarbageCollection"?

Does the JVM needs to be launched with any special parameters?

Is any JNI required? If so, what code exactly?

Does it only work on Sun VMs?

Any complete and compilable example would be most welcome.

link|improve this question

61% accept rate
4  
The document you link to answers all of your questions and this kind of "how do I do it". And since you didn't ask a specific question, I must assume you're simply to lazy to apply it. – Joachim Sauer Feb 1 '10 at 16:37
2  
Seems all the answers you require are in the document you linked, apart from a working code example of course... – Paolo Feb 1 '10 at 16:38
The principle of StackOverflow is that should become the Google of code searching. Not a "RTFM" or a place where you give links, because links may disappear. There are at several points very well formulated in my question but apparently you're not qualified to answer them so you may as well refrain from posting. I must assume you're simply having reading comprehension problem to write "you didn't ask a specific question?". Did it occur to you that maybe someone actually already did this and would be willing to share is knowledge on the subject? – SyntaxT3rr0r Feb 1 '10 at 22:28
oh and thanks for the insults about lazyness by the way. I'm spending time here helping people and answering questions much more than I ask question myself. I'm not here to call names on people and call them "lazy". I flagged your comment as offensive because SO is not about calling names nor about answering "RTFM". – SyntaxT3rr0r Feb 1 '10 at 22:29
1  
@Joachem: How would you phrase this question to be more specific than "The question is really 'how do you force a GC using JVMTI's ForceGarbageCollection'?" That seems pretty darn specific to me. The rest of the post details some of the background research the OP has done. Anyway, personal insults have no place here. If you can answer the question, great. If not, move on. – Eric J. Mar 12 '10 at 3:05
show 1 more comment
feedback

2 Answers

NetBeans, at least, uses System.gc(): http://hg.netbeans.org/main/annotate/9779f138a9c9/openide.actions/src/org/openide/actions/GarbageCollectAction.java (this is for the little button that shows current heap and lets you start GC). If you follow that link, you'll see that they explicitly run finalizers. If you have a few gig of disk space free, and want to investigate the code yourself, it's available via Mercurial: hg clone http://hg.netbeans.org/main/

As far as I can tell, the "System.gc() is just a hint" dogma originates in pedantic interpretation of the JLS and JVM Spec, which allow for Java implementations that don't have a garbage-collected heap. That, and an incomplete reading of the JavaDoc:

Calling the gc method suggests that the Java Virtual Machine expend effort toward recycling unused objects in order to make the memory they currently occupy available for quick reuse. When control returns from the method call, the Java Virtual Machine has made a best effort to reclaim space from all discarded objects.

Read the second sentence: "best effort to reclaim space" is a lot stronger than "hint."

That said, there's rarely a reason to call System.gc(). With apologies to Knuth:

We should forget about memory management, say about 97% of the time: explicit garbage collection is the root of all evil

link|improve this answer
feedback

Yes JNI interface code is needed to use JVMTI API as it is a native API. "native" means that you can only call it directly form native (understan c or c++) code. So if you want to call this API from java you need to write JNI code to interface it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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