[Nice-commit] Nice/bin nicec.bat,1.15,1.16 nicec,1.37,1.38
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-06-29 18:54:58
|
Update of /cvsroot/nice/Nice/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22114/bin Modified Files: nicec.bat nicec Log Message: Start the JVM with 8MB of memory, to reduce initial garbage collection. Index: nicec.bat =================================================================== RCS file: /cvsroot/nice/Nice/bin/nicec.bat,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** nicec.bat 16 Feb 2004 13:52:57 -0000 1.15 --- nicec.bat 29 Jun 2004 18:54:49 -0000 1.16 *************** *** 15,19 **** :gotNice ! java -classpath %NICEPATH%\nice.jar;%CLASSPATH% nice.tools.compiler.console.fun --runtime=%NICEPATH%\nice.jar %1 %2 %3 %4 %5 %6 %7 %8 %9 :end --- 15,19 ---- :gotNice ! java -Xms8M -classpath %NICEPATH%\nice.jar;%CLASSPATH% nice.tools.compiler.console.fun --runtime=%NICEPATH%\nice.jar %1 %2 %3 %4 %5 %6 %7 %8 %9 :end Index: nicec =================================================================== RCS file: /cvsroot/nice/Nice/bin/nicec,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** nicec 16 Feb 2004 12:41:45 -0000 1.37 --- nicec 29 Jun 2004 18:54:49 -0000 1.38 *************** *** 35,39 **** ## Parsing special command line arguments ! java=${JAVA-java} scriptName="$0" progname=`basename $scriptName` --- 35,39 ---- ## Parsing special command line arguments ! java=${JAVA-java -Xms8M} scriptName="$0" progname=`basename $scriptName` |