@@ -1094,7 +1094,7 @@ public ThreadFactory factory() {
1094
1094
return new VirtualThreadFactory (scheduler , name , counter , characteristics , uhe );
1095
1095
} else {
1096
1096
return new PlatformThreadFactory (group , name , counter , characteristics ,
1097
- daemon , priority , uhe );
1097
+ daemonChanged , daemon , priority , uhe );
1098
1098
}
1099
1099
}
1100
1100
}
@@ -1166,6 +1166,7 @@ private static class PlatformThreadFactory extends CountingThreadFactory {
1166
1166
private final ThreadGroup group ;
1167
1167
private final String name ;
1168
1168
private final int characteristics ;
1169
+ private final boolean daemonChanged ;
1169
1170
private final boolean daemon ;
1170
1171
private final int priority ;
1171
1172
private final UncaughtExceptionHandler uhe ;
@@ -1174,13 +1175,15 @@ private static class PlatformThreadFactory extends CountingThreadFactory {
1174
1175
String name ,
1175
1176
int start ,
1176
1177
int characteristics ,
1178
+ boolean daemonChanged ,
1177
1179
boolean daemon ,
1178
1180
int priority ,
1179
1181
UncaughtExceptionHandler uhe ) {
1180
1182
super (start );
1181
1183
this .group = group ;
1182
1184
this .name = name ;
1183
1185
this .characteristics = characteristics ;
1186
+ this .daemonChanged = daemonChanged ;
1184
1187
this .daemon = daemon ;
1185
1188
this .priority = priority ;
1186
1189
this .uhe = uhe ;
@@ -1196,8 +1199,8 @@ public Thread newThread(Runnable task) {
1196
1199
name += next ();
1197
1200
}
1198
1201
Thread thread = new Thread (group , name , characteristics , task , 0 , null );
1199
- if (daemon )
1200
- thread .daemon (true );
1202
+ if (daemonChanged )
1203
+ thread .daemon (daemon );
1201
1204
if (priority != 0 )
1202
1205
thread .priority (priority );
1203
1206
if (uhe != null )
0 commit comments