aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/ThreadGroup.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/lang/ThreadGroup.java')
-rw-r--r--libjava/java/lang/ThreadGroup.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/libjava/java/lang/ThreadGroup.java b/libjava/java/lang/ThreadGroup.java
index f566e10..52c6952 100644
--- a/libjava/java/lang/ThreadGroup.java
+++ b/libjava/java/lang/ThreadGroup.java
@@ -53,6 +53,9 @@ public class ThreadGroup
{
/* The Initial, top-level ThreadGroup. */
static ThreadGroup root = new ThreadGroup();
+ /* This flag is set if an uncaught exception occurs. The runtime should
+ check this and exit with an error status if it is set. */
+ static boolean had_uncaught_exception = false;
private ThreadGroup parent;
private String name;
@@ -496,7 +499,10 @@ public class ThreadGroup
if (parent != null)
parent.uncaughtException (thread, t);
else if (! (t instanceof ThreadDeath))
- t.printStackTrace();
+ {
+ t.printStackTrace();
+ had_uncaught_exception = true;
+ }
}
/** Tell the VM whether it may suspend Threads in low memory