Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8252887: Zero VM is broken after JDK-8252661
Zero VM is broken due to 'block_if_requested' is not a member of 'SafepointMechanism'.

Reviewed-by: dholmes
  • Loading branch information
DamonFool committed Sep 8, 2020
1 parent 7686e87 commit 891886b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/interpreter/zero/bytecodeInterpreter.cpp
Expand Up @@ -106,7 +106,7 @@
{ \
/* zap freed handles rather than GC'ing them */ \
HandleMarkCleaner __hmc(THREAD); \
CALL_VM(SafepointMechanism::block_if_requested(THREAD), handle_exception); \
CALL_VM(SafepointMechanism::process_if_requested(THREAD), handle_exception); \
}

/*
Expand Down

1 comment on commit 891886b

@bridgekeeper
Copy link

@bridgekeeper bridgekeeper bot commented on 891886b Sep 8, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review

Issues

Please sign in to comment.