-----------------------------
Please read the FAQ!
<http://java.apache.org/faq/>
-----------------------------
mskang wrote:
> Lein Ton ÀÛ¼º:
> > Seems like you're running out of heapsize.
> > try
> > java -ms128m -mx156m
> > This works fine for me with the exact same setup..
> >
> > cheers,
> > Lein
> >
>
> it doesn't work. !!
>
> i modified ".java_wrapper" like this to increase heapsize
>
> if [ ${progname} = "java" ]
> then
> prog="$JAVA_HOME/bin/$proc/${THREADS_TYPE}/java -ms128m -mx156m"
> exec $DEBUG_PROG $prog $opts "$@"
[snip]
> any other way to define heapsize ?
I didn't see which JVM you are using. The above options are for a 1.1+
JVM. Is that what you are using? A 1.2+ JVM requires the options
specified as follows:
java -Xms128m -Xmx156m
I suggest a perusal of the java tool docs at Sun:
http://java.sun.com/docs/index.html
Or just enter the name of one of the java tools at the command line
without any arguments and you'll be shown the list of available options.
Scott Stirling
West Newton, MA
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]