diff options
author | Tom Tromey <tromey@cygnus.com> | 1999-11-05 17:10:17 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1999-11-05 17:10:17 +0000 |
commit | ea638d6c94c1c5accf258a2a6c2358ceeef475f7 (patch) | |
tree | c89f77d2e71dcc6b46200c0b2a3884e35393738b /libjava | |
parent | aa608fe69c0eaa21aaebf832cd23b30695b4b948 (diff) | |
download | gcc-ea638d6c94c1c5accf258a2a6c2358ceeef475f7.zip gcc-ea638d6c94c1c5accf258a2a6c2358ceeef475f7.tar.gz gcc-ea638d6c94c1c5accf258a2a6c2358ceeef475f7.tar.bz2 |
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
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 9 | ||||
-rw-r--r-- | libjava/Makefile.am | 8 | ||||
-rw-r--r-- | libjava/Makefile.in | 6 | ||||
-rw-r--r-- | libjava/java/lang/ThreadGroup.java | 2 | ||||
-rw-r--r-- | libjava/java/lang/natThread.cc | 2 |
5 files changed, 11 insertions, 16 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index fc3ac92..f4c8056 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -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. diff --git a/libjava/Makefile.am b/libjava/Makefile.am index e864198..57476d4 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 aad371c..03d84f9 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 41a017d..cca8e72 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 b40e8bf..dcde2bd 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"); } |