Skip to content

Commit d747698

Browse files
committedApr 26, 2023
8306823: Native memory leak in SharedRuntime::notify_jvmti_unmount/mount.
Reviewed-by: pchilanomate, sspitsyn
1 parent 8d89992 commit d747698

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/hotspot/share/runtime/sharedRuntime.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
#include "runtime/interfaceSupport.inline.hpp"
6565
#include "runtime/java.hpp"
6666
#include "runtime/javaCalls.hpp"
67-
#include "runtime/jniHandles.hpp"
67+
#include "runtime/jniHandles.inline.hpp"
6868
#include "runtime/sharedRuntime.hpp"
6969
#include "runtime/stackWatermarkSet.hpp"
7070
#include "runtime/stubRoutines.hpp"
@@ -644,6 +644,8 @@ JRT_ENTRY(void, SharedRuntime::notify_jvmti_mount(oopDesc* vt, jboolean hide, jb
644644
} else {
645645
JvmtiVTMSTransitionDisabler::VTMS_mount_end(vthread, first_mount);
646646
}
647+
648+
JNIHandles::destroy_local(vthread);
647649
JRT_END
648650

649651
JRT_ENTRY(void, SharedRuntime::notify_jvmti_unmount(oopDesc* vt, jboolean hide, jboolean last_unmount, JavaThread* current))
@@ -654,6 +656,8 @@ JRT_ENTRY(void, SharedRuntime::notify_jvmti_unmount(oopDesc* vt, jboolean hide,
654656
} else {
655657
JvmtiVTMSTransitionDisabler::VTMS_unmount_end(vthread, last_unmount);
656658
}
659+
660+
JNIHandles::destroy_local(vthread);
657661
JRT_END
658662
#endif // INCLUDE_JVMTI
659663

0 commit comments

Comments
 (0)
Please sign in to comment.