Skip to content

Commit c95f111

Browse files
committedFeb 25, 2021
daemon(false) not effective
1 parent d45120a commit c95f111

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎src/java.base/share/classes/java/lang/Thread.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ public ThreadFactory factory() {
10941094
return new VirtualThreadFactory(scheduler, name, counter, characteristics, uhe);
10951095
} else {
10961096
return new PlatformThreadFactory(group, name, counter, characteristics,
1097-
daemon, priority, uhe);
1097+
daemonChanged, daemon, priority, uhe);
10981098
}
10991099
}
11001100
}
@@ -1166,6 +1166,7 @@ private static class PlatformThreadFactory extends CountingThreadFactory {
11661166
private final ThreadGroup group;
11671167
private final String name;
11681168
private final int characteristics;
1169+
private final boolean daemonChanged;
11691170
private final boolean daemon;
11701171
private final int priority;
11711172
private final UncaughtExceptionHandler uhe;
@@ -1174,13 +1175,15 @@ private static class PlatformThreadFactory extends CountingThreadFactory {
11741175
String name,
11751176
int start,
11761177
int characteristics,
1178+
boolean daemonChanged,
11771179
boolean daemon,
11781180
int priority,
11791181
UncaughtExceptionHandler uhe) {
11801182
super(start);
11811183
this.group = group;
11821184
this.name = name;
11831185
this.characteristics = characteristics;
1186+
this.daemonChanged = daemonChanged;
11841187
this.daemon = daemon;
11851188
this.priority = priority;
11861189
this.uhe = uhe;
@@ -1196,8 +1199,8 @@ public Thread newThread(Runnable task) {
11961199
name += next();
11971200
}
11981201
Thread thread = new Thread(group, name, characteristics, task, 0, null);
1199-
if (daemon)
1200-
thread.daemon(true);
1202+
if (daemonChanged)
1203+
thread.daemon(daemon);
12011204
if (priority != 0)
12021205
thread.priority(priority);
12031206
if (uhe != null)

0 commit comments

Comments
 (0)
Please sign in to comment.