Wolf-Dieter Fink [http://community.jboss.org/people/wdfink] created the discussion
"Re: java.lang.OutOfMemoryError: unable to create new native thread" To view the discussion, visit: http://community.jboss.org/message/597702#597702 -------------------------------------------------------------- java.lang.OutOfMemoryError: unable to create new native thread Unfortunately the OOM Exception is a bit confusing, see Java API for this :( It mean that the JVM is out of system resource, in your case could not start a new thread. There are two reasons: - restriction to thread resources or filedescriptor - could not get memory for thread stack (this memory is not included in your -Xmx512m, it will be allocated extra) -------------------------------------------------------------- Reply to this message by going to Community [http://community.jboss.org/message/597702#597702] Start a new discussion in Beginner's Corner at Community [http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2075]
_______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
