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 093fc8f..60a0aef 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 142671e..21cc2a5 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 9219f19..3701a41 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 7c8d8b4..44adea2 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);
 }