Is there a way to check the ThreadStackSize Progamatically ?

I have the following code in Jboss 7's jboss.conf file.

 # Java Additional Parameters
wrapper.java.additional.1=-XX:MaxPermSize=512m
wrapper.java.additional.2=-Dorg.jboss.resolver.warning=true
wrapper.java.additional.3=-Dsun.rmi.dgc.client.gcInterval=3600000
wrapper.java.additional.4=-Dsun.rmi.dgc.server.gcInterval=3600000
wrapper.java.additional.5=-Djboss.modules.system.pkgs=org.jboss.byteman
wrapper.java.additional.6=-Dorg.tanukisoftware.wrapper.WrapperManager.mbean=false
wrapper.java.additional.7=-Dlogging.configuration=file:%JBOSS_HOME%/standalone/configuration/logging.properties
wrapper.java.additional.8=-Djava.util.logging.manager=org.jboss.logmanager.LogManager
wrapper.java.additional.9=-Dorg.jboss.logging.Logger.pluginClass=org.jboss.logging.logmanager.LoggerPluginImpl

**wrapper.java.additional.10=-XX:ThreadStackSize=256k**

Is there a way to confirm if the ThreadStackSize has been set to 256k programaticaly ?

link|improve this question

17% accept rate
I dont think you should be putting the 'k' in the argument for ThreadStackSize. – Perception Feb 20 at 14:07
feedback

1 Answer

The problem is that the -XX args are implementation specific, so the core Java classes can't expose that information directly as a simple getMaxStackSize().

There are a lot of useful metrics in the java.lang.management package, such as the MemoryPoolMXBean. I haven't tried looking for stack size in particular, but if you dig around you might find 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.