From ea638d6c94c1c5accf258a2a6c2358ceeef475f7 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 5 Nov 1999 17:10:17 +0000 Subject: [PATCH] natThread.cc (stop): Removed argument name. * 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. From-SVN: r30417 --- libjava/ChangeLog | 9 +++++++++ libjava/Makefile.am | 8 -------- libjava/Makefile.in | 6 ------ libjava/java/lang/ThreadGroup.java | 2 +- libjava/java/lang/natThread.cc | 2 +- 5 files changed, 11 insertions(+), 16 deletions(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index fc3ac920da3..f4c80560c52 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,12 @@ +1999-11-05 Tom Tromey + + * 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 * java/lang/natClass.cc (method_cache_count): Removed. diff --git a/libjava/Makefile.am b/libjava/Makefile.am index e8641980985..57476d4beaf 100644 --- a/libjava/Makefile.am +++ b/libjava/Makefile.am @@ -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);' \ diff --git a/libjava/Makefile.in b/libjava/Makefile.in index aad371c9c68..03d84f9f930 100644 --- a/libjava/Makefile.in +++ b/libjava/Makefile.in @@ -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);' \ diff --git a/libjava/java/lang/ThreadGroup.java b/libjava/java/lang/ThreadGroup.java index 41a017d8e3b..cca8e7207f7 100644 --- a/libjava/java/lang/ThreadGroup.java +++ b/libjava/java/lang/ThreadGroup.java @@ -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"; diff --git a/libjava/java/lang/natThread.cc b/libjava/java/lang/natThread.cc index b40e8bff3e7..dcde2bd60f6 100644 --- a/libjava/java/lang/natThread.cc +++ b/libjava/java/lang/natThread.cc @@ -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"); }