Skip to content

Commit 1406f5e

Browse files
committed
Make JavaStackWalker#callVisitor public
1 parent ef37338 commit 1406f5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/stack/JavaStackWalker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ private static boolean callUnknownFrame(JavaStackWalk walk, ParameterizedStackFr
346346

347347
@Uninterruptible(reason = "Wraps the now safe call to the possibly interruptible visitor.", callerMustBe = true, calleeMustBe = false)
348348
@RestrictHeapAccess(reason = "Whitelisted because some StackFrameVisitor implementations can allocate.", access = RestrictHeapAccess.Access.UNRESTRICTED)
349-
static boolean callVisitor(JavaStackWalk walk, CodeInfo info, ParameterizedStackFrameVisitor visitor, Object data) {
349+
public static boolean callVisitor(JavaStackWalk walk, CodeInfo info, ParameterizedStackFrameVisitor visitor, Object data) {
350350
return visitor.visitFrame(walk.getSP(), walk.getPossiblyStaleIP(), info, Deoptimizer.checkDeoptimized(walk.getSP()), data);
351351
}
352352
}

0 commit comments

Comments
 (0)