]> gcc.gnu.org Git - gcc.git/commitdiff
gij.cc (nonstandard_opts_help): Add entry for -Xss.
authorBryce McKinlay <mckinlay@redhat.com>
Fri, 25 Nov 2005 03:36:13 +0000 (03:36 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Fri, 25 Nov 2005 03:36:13 +0000 (03:36 +0000)
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

gcc/java/ChangeLog
gcc/java/gcj.texi
libjava/ChangeLog
libjava/gij.cc

index 093fc8fb089f59acdeeaac5d8e2c4c6b88d7341b..60a0aef353dc4916d3ce635d2b49745c61d9d0dd 100644 (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
index 142671eb8526cbf3ee137b506b95b6667a72f307..21cc2a5770eba45131c2cae6729a87090fe42e16 100644 (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
index 9219f19c734199475ddd36417265d034efa522e1..3701a4181bbc627baf172715603810ab18d07871 100644 (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.
index 7c8d8b4222b45c71e23d14f070cecd17d5c3f74d..44adea26e744ad24016feb0f08c699fb940efb5e 100644 (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);
 }
 
This page took 0.084889 seconds and 5 git commands to generate.