Skip to content

Commit e56d02e

Browse files
committedSep 24, 2021
rm moved
1 parent b925e37 commit e56d02e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/hotspot/share/prims/jvmtiThreadState.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -535,10 +535,10 @@ void JvmtiThreadState::leave_interp_only_mode() {
535535
int JvmtiThreadState::count_frames() {
536536
JavaThread* thread = get_thread_or_saved();
537537
javaVFrame *jvf;
538+
ResourceMark rm;
538539
if (thread == NULL) {
539540
oop thread_obj = get_thread_oop();
540541
jvf = JvmtiEnvBase::get_vthread_jvf(thread_obj);
541-
jvf = JvmtiEnvBase::check_and_skip_hidden_frames(thread_obj, jvf);
542542
} else {
543543
#ifdef ASSERT
544544
Thread *current_thread = Thread::current();
@@ -548,7 +548,6 @@ int JvmtiThreadState::count_frames() {
548548
thread->is_handshake_safe_for(current_thread),
549549
"call by myself / at safepoint / at handshake");
550550
if (!thread->has_last_Java_frame()) return 0; // no Java frames
551-
ResourceMark rm;
552551
RegisterMap reg_map(thread, false, false, true);
553552
jvf = thread->last_java_vframe(&reg_map);
554553
jvf = JvmtiEnvBase::check_and_skip_hidden_frames(thread, jvf);

‎test/hotspot/jtreg/vmTestbase/nsk/share/jdi/JDIThreadFactory.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131

3232
public class JDIThreadFactory {
3333

34-
private static ThreadFactory threadFactory = r -> new Thread(r);
34+
private static ThreadFactory threadFactory = "Virtual".equals(System.getProperty("main.wrapper"))
35+
? Thread.ofVirtual().factory() : Thread.ofPlatform().factory();
3536

3637
public static Thread newThread(NamedTask task) {
3738
return newThread(task, task.getName());

0 commit comments

Comments
 (0)
Please sign in to comment.