OSDN Git Service

* java/lang/natThread.cc (stop): Removed argument name.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 5 Nov 1999 17:10:17 +0000 (17:10 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 5 Nov 1999 17:10:17 +0000 (17:10 +0000)
* java/lang/ThreadGroup.java (ThreadGroup(int)): No longer
`private'; now has default access.
* Makefile.in: Rebuilt.
* Makefile.am (java/lang/ThreadGroup.h): Removed.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30417 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/Makefile.am
libjava/Makefile.in
libjava/java/lang/ThreadGroup.java
libjava/java/lang/natThread.cc

index fc3ac92..f4c8056 100644 (file)
@@ -1,3 +1,12 @@
+1999-11-05  Tom Tromey  <tromey@cygnus.com>
+
+       * java/lang/natThread.cc (stop): Removed argument name.
+
+       * java/lang/ThreadGroup.java (ThreadGroup(int)): No longer
+       `private'; now has default access.
+       * Makefile.in: Rebuilt.
+       * Makefile.am (java/lang/ThreadGroup.h): Removed.
+
 1999-11-04  Tom Tromey  <tromey@cygnus.com>
 
        * java/lang/natClass.cc (method_cache_count): Removed.
index e864198..57476d4 100644 (file)
@@ -215,14 +215,6 @@ java/lang/FirstThread.h: java/lang/FirstThread.class libgcj.zip
                -friend 'void _Jv_RunMain (const char*, int, const char **);' \
                $(basename $<)
 
-## ThreadGroup has a special constructor that is used when creating
-## the first ThreadGroup.  We need to expose this to the main program.
-java/lang/ThreadGroup.h: java/lang/ThreadGroup.class libgcj.zip
-       $(GCJH) -classpath $(top_builddir) \
-               -friend 'void JvRunMain (jclass, int, const char **);' \
-               -friend 'void _Jv_RunMain (const char*, int, const char **);' \
-               $(basename $<)
-
 java/lang/String.h: java/lang/String.class libgcj.zip
        $(GCJH) -classpath $(top_builddir) \
            -friend 'jchar* _Jv_GetStringChars (jstring str);' \
index aad371c..03d84f9 100644 (file)
@@ -1476,12 +1476,6 @@ java/lang/FirstThread.h: java/lang/FirstThread.class libgcj.zip
                -friend 'void _Jv_RunMain (const char*, int, const char **);' \
                $(basename $<)
 
-java/lang/ThreadGroup.h: java/lang/ThreadGroup.class libgcj.zip
-       $(GCJH) -classpath $(top_builddir) \
-               -friend 'void JvRunMain (jclass, int, const char **);' \
-               -friend 'void _Jv_RunMain (const char*, int, const char **);' \
-               $(basename $<)
-
 java/lang/String.h: java/lang/String.class libgcj.zip
        $(GCJH) -classpath $(top_builddir) \
            -friend 'jchar* _Jv_GetStringChars (jstring str);' \
index 41a017d..cca8e72 100644 (file)
@@ -362,7 +362,7 @@ public class ThreadGroup
   // This is the constructor that is used when creating the very first
   // ThreadGroup.  We have an arbitrary argument here just to
   // differentiate this constructor from the others.
-  private ThreadGroup (int dummy)
+  ThreadGroup (int dummy)
   {
     parent = null;
     name = "main";
index b40e8bf..dcde2bd 100644 (file)
@@ -302,7 +302,7 @@ java::lang::Thread::start (void)
 }
 
 void
-java::lang::Thread::stop (java::lang::Throwable *e)
+java::lang::Thread::stop (java::lang::Throwable *)
 {
   JvFail ("java::lang::Thread::stop unimplemented");
 }