Skip to content

Commit 50e7df9

Browse files
committedJan 16, 2023
8300024: Replace use of JNI_COMMIT mode with mode 0
Reviewed-by: amenkov, sspitsyn, cjplummer
1 parent fe7fca0 commit 50e7df9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed
 

‎src/jdk.hotspot.agent/linux/native/libsaproc/LinuxDebuggerLocal.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2023, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2019, 2021, NTT DATA.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -600,7 +600,7 @@ JNIEXPORT jlongArray JNICALL Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLo
600600

601601
#endif
602602

603-
env->ReleaseLongArrayElements(array, regs, JNI_COMMIT);
603+
env->ReleaseLongArrayElements(array, regs, 0);
604604
return array;
605605
}
606606
#endif

‎src/jdk.hotspot.agent/macosx/native/libsaproc/MacosxDebuggerLocal.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2023, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2021, Azul Systems, Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -621,7 +621,7 @@ jlongArray getThreadIntegerRegisterSetFromCore(JNIEnv *env, jobject this_obj, lo
621621
#error UNSUPPORTED_ARCH
622622
#endif
623623

624-
(*env)->ReleaseLongArrayElements(env, array, regs, JNI_COMMIT);
624+
(*env)->ReleaseLongArrayElements(env, array, regs, 0);
625625
return array;
626626
}
627627

‎src/jdk.hotspot.agent/windows/native/libsaproc/sawindbg.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -625,7 +625,7 @@ static bool addThreads(JNIEnv* env, jobject obj) {
625625
ptrRegs[REG_INDEX(RIP)] = context.Rip;
626626
#endif
627627

628-
env->ReleaseLongArrayElements(regs, ptrRegs, JNI_COMMIT);
628+
env->ReleaseLongArrayElements(regs, ptrRegs, 0);
629629
CHECK_EXCEPTION_(false);
630630

631631
env->CallVoidMethod(obj, setThreadIntegerRegisterSet_ID, (jlong)ptrThreadIds[t], regs);

‎test/hotspot/jtreg/serviceability/jvmti/RedefineClasses/RedefineRetransform/libRedefineRetransform.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -166,7 +166,7 @@ class ClassFileLoadHookHelper {
166166
result = nullptr;
167167
} else {
168168
memcpy(arrayPtr, savedClassBytes, savedClassBytesLen);
169-
env->ReleaseByteArrayElements(result, arrayPtr, JNI_COMMIT);
169+
env->ReleaseByteArrayElements(result, arrayPtr, 0);
170170
}
171171
}
172172
return result;

0 commit comments

Comments
 (0)
Please sign in to comment.