Skip to content

Commit 70395d5

Browse files
committedApr 20, 2022
Move start threads to initPhase1
1 parent c4f6dfb commit 70395d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -2166,11 +2166,11 @@ private static void initPhase1() {
21662166
// classes are used.
21672167
VM.initializeOSEnvironment();
21682168

2169-
// system properties, java.lang and other core classes are now initialized
2170-
VM.initLevel(1);
2171-
21722169
// start Finalizer and Reference Handler threads
21732170
SharedSecrets.getJavaLangRefAccess().startThreads();
2171+
2172+
// system properties, java.lang and other core classes are now initialized
2173+
VM.initLevel(1);
21742174
}
21752175

21762176
// @see #initPhase2()

0 commit comments

Comments
 (0)
Please sign in to comment.