src/java.base/share/classes/java/lang/ThreadGroup.java
changeset 59201 b24f4caa1411
parent 58779 2ba609bf43bb
equal deleted inserted replaced
59200:a686b67a59d9 59201:b24f4caa1411
    50  * multi-processor system with many thread groups.
    50  * multi-processor system with many thread groups.
    51  * This policy often leads to taking a snapshot of the state of a thread group
    51  * This policy often leads to taking a snapshot of the state of a thread group
    52  * and working off of that snapshot, rather than holding the thread group locked
    52  * and working off of that snapshot, rather than holding the thread group locked
    53  * while we work on the children.
    53  * while we work on the children.
    54  */
    54  */
    55 public
    55 public class ThreadGroup implements Thread.UncaughtExceptionHandler {
    56 class ThreadGroup implements Thread.UncaughtExceptionHandler {
       
    57     private final ThreadGroup parent;
    56     private final ThreadGroup parent;
    58     String name;
    57     String name;
    59     int maxPriority;
    58     int maxPriority;
    60     boolean destroyed;
    59     boolean destroyed;
    61     boolean daemon;
    60     boolean daemon;