You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/classinitialization/ClassInitializationSupport.java
+13-11Lines changed: 13 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -169,9 +169,22 @@ public ClassInitializationSupport(MetaAccessProvider metaAccess, ImageClassLoade
169
169
/**
170
170
* Seal the configuration, blocking if another thread is trying to seal the configuration or an
171
171
* unsealed-configuration window is currently open in another thread.
172
+
* </p>
173
+
* If -H:+PrintClassInitialization is set, dumps all class-initialization config into a file.
172
174
*/
173
175
publicsynchronizedvoidsealConfiguration() {
174
176
setConfigurationSealed(true);
177
+
if (ClassInitializationOptions.PrintClassInitialization.getValue()) {
0 commit comments