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
This commit is contained in:
Tom Tromey 1999-11-05 17:10:17 +00:00 committed by Tom Tromey
parent aa608fe69c
commit ea638d6c94
5 changed files with 11 additions and 16 deletions

View 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.

View 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);' \

View 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);' \

View 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";

View 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");
}