Commit cb47fb05 by Tom Tromey Committed by Tom Tromey

ThreadGroup.java (uncaughtException): Print message to System.err.

	* java/lang/ThreadGroup.java (uncaughtException): Print message to
	System.err.  Required by spec.

From-SVN: r47779
parent d0c25015
2001-12-07 Tom Tromey <tromey@redhat.com>
* java/lang/ThreadGroup.java (uncaughtException): Print message to
System.err. Required by spec.
* verify.cc (_Jv_BytecodeVerifier::branch_prepass): Set start_PC
earlier, for error handling.
(_Jv_BytecodeVerifier::note_branch_target): Fixed branch target
......
......@@ -510,17 +510,18 @@ public class ThreadGroup
else if (! (t instanceof ThreadDeath))
{
if (thread != null)
System.out.print("Exception in thread \"" + thread.getName() + "\" ");
System.err.print ("Exception in thread \""
+ thread.getName() + "\" ");
try
{
t.printStackTrace();
t.printStackTrace(System.err);
}
catch (Throwable x)
{
// This means that something is badly screwed up with the runtime,
// or perhaps someone is messing with the SecurityManager. In any
// case, try to deal with it gracefully.
System.out.println(t);
System.err.println(t);
System.err.println("*** Got " + x.toString() +
" while trying to print stack trace");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment