gij.cc (nonstandard_opts_help): Add entry for -Xss.

2005-11-24  Bryce McKinlay  <mckinlay@redhat.com>

	* gij.cc (nonstandard_opts_help): Add entry for -Xss.

2005-11-24  Bryce McKinlay  <mckinlay@redhat.com>

	* gcj.texi (gij options): Add -Xss documentation.

From-SVN: r107480
This commit is contained in:
Bryce McKinlay 2005-11-25 03:36:13 +00:00 committed by Bryce McKinlay
parent 725cd7a8cc
commit 409f11d57c
4 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-11-24 Bryce McKinlay <mckinlay@redhat.com>
* gcj.texi (gij options): Add -Xss documentation.
2005-11-08 Wil Mahan <wmahan@gmail.com>
PR java/23617

View File

@ -1111,6 +1111,9 @@ Set the initial heap size.
@item -Xmx@var{size}
Set the maximum heap size.
@item -Xss@var{size}
Set the thread stack size.
@end table
Unrecognized @code{-X} options are ignored, for compatibility with

View File

@ -1,3 +1,7 @@
2005-11-24 Bryce McKinlay <mckinlay@redhat.com>
* gij.cc (nonstandard_opts_help): Add entry for -Xss.
2005-11-17 Mark Wielaard <mark@klomp.org>
Imported GNU Classpath gcj-import-20051117.

View File

@ -52,6 +52,7 @@ nonstandard_opts_help ()
{
printf (" -Xms<size> set initial heap size\n");
printf (" -Xmx<size> set maximum heap size\n");
printf (" -Xss<size> set thread stack size\n");
exit (0);
}