File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/image Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -208,6 +208,7 @@ public CompilationResult compilationResultFor(HostedMethod method) {
208
208
public abstract void layoutMethods (DebugContext debug , BigBang bb );
209
209
210
210
public void layoutConstants () {
211
+ DeadlockWatchdog watchdog = ImageSingletons .lookup (DeadlockWatchdog .class );
211
212
for (Pair <HostedMethod , CompilationResult > pair : getOrderedCompilations ()) {
212
213
CompilationResult compilation = pair .getRight ();
213
214
for (DataSection .Data data : compilation .getDataSection ()) {
@@ -225,6 +226,7 @@ public void layoutConstants() {
225
226
constantReasons .put (constant , compilation .getName ());
226
227
}
227
228
}
229
+ watchdog .recordActivity ();
228
230
}
229
231
dataSection .close (HostedOptionValues .singleton (), 1 );
230
232
}
You can’t perform that action at this time.
0 commit comments