We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b56b82 commit acd75e0Copy full SHA for acd75e0
src/hotspot/os/posix/safefetch_static_posix.cpp
@@ -48,7 +48,6 @@ extern "C" char _SafeFetchN_fault[] __attribute__ ((visibility ("hidden")));
48
bool handle_safefetch(int sig, address pc, void* context) {
49
ucontext_t* uc = (ucontext_t*)context;
50
if ((sig == SIGSEGV || sig == SIGBUS) && uc != NULL) {
51
- address pc = os::Posix::ucontext_get_pc(uc);
52
if (pc == (address)_SafeFetch32_fault) {
53
os::Posix::ucontext_set_pc(uc, (address)_SafeFetch32_continuation);
54
return true;
0 commit comments