My question is simple when i say -Xmx=1024m does this include permgen i.e -XX:MaxPermSize= is taken from these 1024m or it is seperate.

looking at http://java.sun.com/docs/hotspot/gc1.4.2/ I felt that it takes from 1024m but untill now i thought they were seperate.

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Nope, permGen space is in addition to main heap (latter capped via -Xmx on Sun VMs)

link|improve this answer
feedback

Permanent generation is a separate space allocated via MaxPermSize. This is in addition to the heap set with -Xmx.

See the diagram at http://java.sun.com/docs/hotspot/gc1.4.2/ "3. Sizing the Generations"

This shows the "Total Size" i.e. Xmx does not count the Permanent generation.

And by the way, JDK 1.4 is quite old. Check the JDK 1.6 options and links for an updated view: http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html

link|improve this answer
2nd link is broken – pstanton Jul 28 '11 at 3:15
feedback

Your Answer

 
or
required, but never shown

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