54
54
*/
55
55
public class ThreadGroup implements Thread .UncaughtExceptionHandler {
56
56
private final ThreadGroup parent ;
57
- private final boolean isLightweight ;
57
+ private final boolean virtual ;
58
58
String name ;
59
59
int maxPriority ;
60
60
boolean destroyed ;
@@ -75,7 +75,7 @@ private ThreadGroup() { // called from C code
75
75
this .name = "system" ;
76
76
this .maxPriority = Thread .MAX_PRIORITY ;
77
77
this .parent = null ;
78
- this .isLightweight = false ;
78
+ this .virtual = false ;
79
79
}
80
80
81
81
/**
@@ -116,16 +116,16 @@ public ThreadGroup(ThreadGroup parent, String name) {
116
116
this (checkParentAccess (parent ), parent , name , false );
117
117
}
118
118
119
- ThreadGroup (ThreadGroup parent , String name , boolean isLightweight ) {
120
- this (null , parent , name , isLightweight );
119
+ ThreadGroup (ThreadGroup parent , String name , boolean virtual ) {
120
+ this (null , parent , name , virtual );
121
121
}
122
122
123
- private ThreadGroup (Void unused , ThreadGroup parent , String name , boolean isLightweight ) {
123
+ private ThreadGroup (Void unused , ThreadGroup parent , String name , boolean virtual ) {
124
124
this .name = name ;
125
125
this .maxPriority = parent .maxPriority ;
126
126
this .daemon = parent .daemon ;
127
127
this .parent = parent ;
128
- this .isLightweight = isLightweight ;
128
+ this .virtual = virtual ;
129
129
parent .add (this );
130
130
}
131
131
@@ -264,7 +264,7 @@ public final void setMaxPriority(int pri) {
264
264
ThreadGroup [] groupsSnapshot ;
265
265
synchronized (this ) {
266
266
checkAccess ();
267
- if (isLightweight || (pri < Thread .MIN_PRIORITY || pri > Thread .MAX_PRIORITY )) {
267
+ if (virtual || (pri < Thread .MIN_PRIORITY || pri > Thread .MAX_PRIORITY )) {
268
268
return ;
269
269
}
270
270
maxPriority = (parent != null ) ? Math .min (pri , parent .maxPriority ) : pri ;
@@ -766,7 +766,7 @@ public final void resume() {
766
766
* called with no arguments; this may result in a security exception.
767
767
*
768
768
* @throws UnsupportedOperationException if this is the thread group
769
- * for lightweight threads
769
+ * for virtual threads
770
770
* @throws IllegalThreadStateException if the thread group is not
771
771
* empty or if the thread group has already been destroyed.
772
772
* @throws SecurityException if the current thread cannot modify this
@@ -775,7 +775,7 @@ public final void resume() {
775
775
* @since 1.0
776
776
*/
777
777
public final void destroy () {
778
- if (isLightweight )
778
+ if (virtual )
779
779
throw new UnsupportedOperationException ();
780
780
int ngroupsSnapshot ;
781
781
ThreadGroup [] groupsSnapshot ;
@@ -1082,7 +1082,7 @@ public void uncaughtException(Thread t, Throwable e) {
1082
1082
*/
1083
1083
@ Deprecated (since ="1.2" , forRemoval =true )
1084
1084
public boolean allowThreadSuspension (boolean b ) {
1085
- return (isLightweight ) ? !b : true ;
1085
+ return (virtual ) ? !b : true ;
1086
1086
}
1087
1087
1088
1088
/**
0 commit comments