The javacore dumps indicate that I am running out of memory for Java. I am not familar with were to configure how much memory to give to java in the Cloverleaf app/client.
The allocation of memory for the JVM is specified using -X options. The exact options may depend upon the JVM that you are using, the examples here are for the Sun JVM:
Code:
-Xms initial java heap size
-Xmx maximum java heap size
You can pass these options to your JVM by using the ‘CLJAVA_INIT‘ environment variable, e.g. :
Code:
CLJAVA_INIT=-Xms256M -Xmx500M
Author
Replies
Viewing 0 reply threads
The forum ‘Cloverleaf’ is closed to new topics and replies.