Skip to content

Commit fbd43e5

Browse files
committedNov 4, 2024
Improve JFR pinned reason in event
1 parent b3de8f6 commit fbd43e5

File tree

16 files changed

+150
-290
lines changed

16 files changed

+150
-290
lines changed
 

‎src/hotspot/share/include/jvm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ JNIEXPORT void JNICALL
11461146
JVM_VirtualThreadDisableSuspend(JNIEnv* env, jclass clazz, jboolean enter);
11471147

11481148
JNIEXPORT void JNICALL
1149-
JVM_VirtualThreadPinnedEvent(jint reasonCode, jstring reasonString);
1149+
JVM_VirtualThreadPinnedEvent(JNIEnv* env, jclass clazz, jstring op);
11501150

11511151
JNIEXPORT jobject JNICALL
11521152
JVM_TakeVirtualThreadListToUnblock(JNIEnv* env, jclass ignored);

‎src/hotspot/share/jfr/metadata/metadata.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@
156156
<Field type="ulong" name="id" label="Continuation ID" />
157157
</Event>
158158

159-
<Event name="VirtualThreadPinned" category="Java Virtual Machine, Runtime" label="Virtual Thread Pinned" thread="true" stackTrace="true" startTime="false">
159+
<Event name="VirtualThreadPinned" category="Java Virtual Machine, Runtime" label="Virtual Thread Pinned" thread="true" stackTrace="true">
160+
<Field type="string" name="blockingOperation" label="Blocking operation" />
160161
<Field type="string" name="pinnedReason" label="Pinned Reason" />
161162
<Field type="Thread" name="carrierThread" label="Carrier Thread" />
162163
</Event>

‎src/hotspot/share/oops/instanceKlass.cpp

+1-16
Original file line numberDiff line numberDiff line change
@@ -1105,22 +1105,6 @@ void InstanceKlass::initialize_impl(TRAPS) {
11051105
}
11061106
wait = true;
11071107
jt->set_class_to_be_initialized(this);
1108-
1109-
#if INCLUDE_JFR
1110-
ContinuationEntry* ce = jt->last_continuation();
1111-
if (ce != nullptr && ce->is_virtual_thread()) {
1112-
EventVirtualThreadPinned e;
1113-
if (e.should_commit()) {
1114-
ResourceMark rm(jt);
1115-
char reason[256];
1116-
jio_snprintf(reason, sizeof reason, "Waiting for initialization of klass %s", external_name());
1117-
e.set_pinnedReason(reason);
1118-
e.set_carrierThread(JFR_JVM_THREAD_ID(THREAD));
1119-
e.commit();
1120-
}
1121-
}
1122-
#endif
1123-
11241108
ol.wait_uninterruptibly(jt);
11251109
jt->set_class_to_be_initialized(nullptr);
11261110
}
@@ -1619,6 +1603,7 @@ void InstanceKlass::call_class_initializer(TRAPS) {
16191603
THREAD->name());
16201604
}
16211605
if (h_method() != nullptr) {
1606+
ThreadInClassInitializer ticl(THREAD, this); // Track class being initialized
16221607
JavaCallArguments args; // No arguments
16231608
JavaValue result(T_VOID);
16241609
JavaCalls::call(&result, h_method, &args, CHECK); // Static call (no args)

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

+8-8
Original file line numberDiff line numberDiff line change
@@ -3959,16 +3959,16 @@ JVM_ENTRY(void, JVM_VirtualThreadDisableSuspend(JNIEnv* env, jclass clazz, jbool
39593959
#endif
39603960
JVM_END
39613961

3962-
JVM_ENTRY_NO_ENV(void, JVM_VirtualThreadPinnedEvent(jint reasonCode, jstring reasonString))
3962+
JVM_ENTRY(void, JVM_VirtualThreadPinnedEvent(JNIEnv* env, jclass ignored, jstring op))
39633963
#if INCLUDE_JFR
3964-
EventVirtualThreadPinned e;
3965-
if (e.should_commit()) {
3964+
freeze_result result = THREAD->last_freeze_fail_result();
3965+
assert(result != freeze_ok, "sanity check");
3966+
EventVirtualThreadPinned event(UNTIMED);
3967+
event.set_starttime(THREAD->last_freeze_fail_time());
3968+
if (event.should_commit()) {
39663969
ResourceMark rm(THREAD);
3967-
// ignore reason code for now
3968-
const char *reason = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(reasonString));
3969-
e.set_pinnedReason(reason);
3970-
e.set_carrierThread(JFR_JVM_THREAD_ID(THREAD));
3971-
e.commit();
3970+
const char *str = java_lang_String::as_utf8_string(JNIHandles::resolve_non_null(op));
3971+
THREAD->post_vthread_pinned_event(&event, str, result);
39723972
}
39733973
#endif
39743974
JVM_END

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

+1
Original file line numberDiff line numberDiff line change
@@ -1676,6 +1676,7 @@ static inline freeze_result freeze_epilog(ContinuationWrapper& cont) {
16761676

16771677
static freeze_result freeze_epilog(JavaThread* thread, ContinuationWrapper& cont, freeze_result res) {
16781678
if (UNLIKELY(res != freeze_ok)) {
1679+
JFR_ONLY(thread->set_last_freeze_fail_result(res);)
16791680
verify_continuation(cont.continuation());
16801681
log_develop_trace(continuations)("=== end of freeze (fail %d)", res);
16811682
return res;

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

+36
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,7 @@ JavaThread::JavaThread(MemTag mem_tag) :
515515
_parker(),
516516

517517
_class_to_be_initialized(nullptr),
518+
_class_being_initialized(nullptr),
518519

519520
_SleepEvent(ParkEvent::Allocate(this)),
520521

@@ -2327,3 +2328,38 @@ void JavaThread::add_oop_handles_for_release() {
23272328
_oop_handle_list = new_head;
23282329
Service_lock->notify_all();
23292330
}
2331+
2332+
#if INCLUDE_JFR
2333+
void JavaThread::set_last_freeze_fail_result(freeze_result result) {
2334+
assert(result != freeze_ok, "sanity check");
2335+
_last_freeze_fail_result = result;
2336+
_last_freeze_fail_time = Ticks::now();
2337+
}
2338+
2339+
// Post jdk.VirtualThreadPinned event
2340+
void JavaThread::post_vthread_pinned_event(EventVirtualThreadPinned* event, const char* op, freeze_result result) {
2341+
assert(result != freeze_ok, "sanity check");
2342+
if (event->should_commit()) {
2343+
char reason[256];
2344+
if (class_to_be_initialized() != nullptr) {
2345+
ResourceMark rm(this);
2346+
jio_snprintf(reason, sizeof reason, "Waited for initialization of %s by another thread",
2347+
class_to_be_initialized()->external_name());
2348+
event->set_pinnedReason(reason);
2349+
} else if (class_being_initialized() != nullptr) {
2350+
ResourceMark rm(this);
2351+
jio_snprintf(reason, sizeof(reason), "VM call to %s.<clinit> on stack",
2352+
class_being_initialized()->external_name());
2353+
event->set_pinnedReason(reason);
2354+
} else if (result == freeze_pinned_native) {
2355+
event->set_pinnedReason("Native or VM frame on stack");
2356+
} else {
2357+
jio_snprintf(reason, sizeof(reason), "Freeze or preempt failed (%d)", result);
2358+
event->set_pinnedReason(reason);
2359+
}
2360+
event->set_blockingOperation(op);
2361+
event->set_carrierThread(JFR_JVM_THREAD_ID(this));
2362+
event->commit();
2363+
}
2364+
}
2365+
#endif

‎src/hotspot/share/runtime/javaThread.hpp

+37
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
#include "utilities/macros.hpp"
5050
#if INCLUDE_JFR
5151
#include "jfr/support/jfrThreadExtension.hpp"
52+
#include "utilities/ticks.hpp"
5253
#endif
5354

5455
class AsyncExceptionHandshake;
@@ -78,6 +79,8 @@ class javaVFrame;
7879
class JavaThread;
7980
typedef void (*ThreadFunction)(JavaThread*, TRAPS);
8081

82+
class EventVirtualThreadPinned;
83+
8184
class JavaThread: public Thread {
8285
friend class VMStructs;
8386
friend class JVMCIVMStructs;
@@ -1212,11 +1215,23 @@ class JavaThread: public Thread {
12121215
void set_class_to_be_initialized(InstanceKlass* k);
12131216
InstanceKlass* class_to_be_initialized() const;
12141217

1218+
// Track executing class initializer, see ThreadInClassInitializer
1219+
void set_class_being_initialized(InstanceKlass* k);
1220+
InstanceKlass* class_being_initialized() const;
1221+
12151222
private:
12161223
InstanceKlass* _class_to_be_initialized;
1224+
InstanceKlass* _class_being_initialized;
12171225

12181226
// java.lang.Thread.sleep support
12191227
ParkEvent * _SleepEvent;
1228+
1229+
#if INCLUDE_JFR
1230+
// Support for jdk.VirtualThreadPinned event
1231+
freeze_result _last_freeze_fail_result;
1232+
Ticks _last_freeze_fail_time;
1233+
#endif
1234+
12201235
public:
12211236
bool sleep(jlong millis);
12221237
bool sleep_nanos(jlong nanos);
@@ -1225,6 +1240,15 @@ class JavaThread: public Thread {
12251240
void interrupt();
12261241
bool is_interrupted(bool clear_interrupted);
12271242

1243+
#if INCLUDE_JFR
1244+
// Support for jdk.VirtualThreadPinned event
1245+
freeze_result last_freeze_fail_result() { return _last_freeze_fail_result; }
1246+
Ticks& last_freeze_fail_time() { return _last_freeze_fail_time; }
1247+
void set_last_freeze_fail_result(freeze_result result);
1248+
#endif
1249+
void post_vthread_pinned_event(EventVirtualThreadPinned* event, const char* op, freeze_result result) NOT_JFR_RETURN();
1250+
1251+
12281252
// This is only for use by JVMTI RawMonitorWait. It emulates the actions of
12291253
// the Java code in Object::wait which are not present in RawMonitorWait.
12301254
bool get_and_clear_interrupted();
@@ -1331,4 +1355,17 @@ class ThreadOnMonitorWaitedEvent {
13311355
~ThreadOnMonitorWaitedEvent() { JVMTI_ONLY(_thread->set_on_monitor_waited_event(false);) }
13321356
};
13331357

1358+
class ThreadInClassInitializer : public StackObj {
1359+
JavaThread* _thread;
1360+
InstanceKlass* _previous;
1361+
public:
1362+
ThreadInClassInitializer(JavaThread* thread, InstanceKlass* ik) : _thread(thread) {
1363+
_previous = _thread->class_being_initialized();
1364+
_thread->set_class_being_initialized(ik);
1365+
}
1366+
~ThreadInClassInitializer() {
1367+
_thread->set_class_being_initialized(_previous);
1368+
}
1369+
};
1370+
13341371
#endif // SHARE_RUNTIME_JAVATHREAD_HPP

‎src/hotspot/share/runtime/javaThread.inline.hpp

+10
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,16 @@ inline InstanceKlass* JavaThread::class_to_be_initialized() const {
241241
return _class_to_be_initialized;
242242
}
243243

244+
inline void JavaThread::set_class_being_initialized(InstanceKlass* k) {
245+
assert(k != nullptr || _class_being_initialized != nullptr, "incorrect usage");
246+
assert(this == Thread::current(), "Only the current thread can set this field");
247+
_class_being_initialized = k;
248+
}
249+
250+
inline InstanceKlass* JavaThread::class_being_initialized() const {
251+
return _class_being_initialized;
252+
}
253+
244254
inline void JavaThread::om_set_monitor_cache(ObjectMonitor* monitor) {
245255
assert(UseObjectMonitorTable, "must be");
246256
assert(monitor != nullptr, "use om_clear_monitor_cache to clear");

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

+34-41
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,6 @@ OopStorage* ObjectMonitor::_oop_storage = nullptr;
119119
OopHandle ObjectMonitor::_vthread_cxq_head;
120120
ParkEvent* ObjectMonitor::_vthread_unparker_ParkEvent = nullptr;
121121

122-
static void post_virtual_thread_pinned_event(JavaThread* current, const char* reason) {
123-
EventVirtualThreadPinned e;
124-
if (e.should_commit()) {
125-
e.set_pinnedReason(reason);
126-
e.set_carrierThread(JFR_JVM_THREAD_ID(current));
127-
e.commit();
128-
}
129-
}
130-
131122
// -----------------------------------------------------------------------------
132123
// Theory of operations -- Monitors lists, thread residency, etc:
133124
//
@@ -489,14 +480,17 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
489480
assert(!is_being_async_deflated(), "must be");
490481

491482
JFR_ONLY(JfrConditionalFlush<EventJavaMonitorEnter> flush(current);)
492-
EventJavaMonitorEnter event;
493-
if (event.is_started()) {
494-
event.set_monitorClass(object()->klass());
483+
EventJavaMonitorEnter enter_event;
484+
if (enter_event.is_started()) {
485+
enter_event.set_monitorClass(object()->klass());
495486
// Set an address that is 'unique enough', such that events close in
496487
// time and with the same address are likely (but not guaranteed) to
497488
// belong to the same object.
498-
event.set_address((uintptr_t)this);
489+
enter_event.set_address((uintptr_t)this);
499490
}
491+
EventVirtualThreadPinned vthread_pinned_event;
492+
493+
freeze_result result;
500494

501495
{ // Change java thread status to indicate blocked on monitor enter.
502496
JavaThreadBlockedOnMonitorEnterState jtbmes(current, this);
@@ -517,7 +511,7 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
517511

518512
ContinuationEntry* ce = current->last_continuation();
519513
if (ce != nullptr && ce->is_virtual_thread()) {
520-
freeze_result result = Continuation::try_preempt(current, ce->cont_oop(current));
514+
result = Continuation::try_preempt(current, ce->cont_oop(current));
521515
if (result == freeze_ok) {
522516
bool acquired = VThreadMonitorEnter(current);
523517
if (acquired) {
@@ -537,11 +531,6 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
537531
(!acquired && !current->preemption_cancelled() && state == java_lang_VirtualThread::BLOCKING), "invariant");
538532
return;
539533
}
540-
if (result == freeze_pinned_native) {
541-
post_virtual_thread_pinned_event(current, "Native frame or <clinit> on stack");
542-
} else if (result == freeze_unsupported) {
543-
post_virtual_thread_pinned_event(current, "Native frame or <clinit> or monitors on stack");
544-
}
545534
}
546535

547536
OSThreadContendState osts(current->osthread());
@@ -603,10 +592,17 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
603592
// event handler consumed an unpark() issued by the thread that
604593
// just exited the monitor.
605594
}
606-
if (event.should_commit()) {
607-
event.set_previousOwner(_previous_owner_tid);
608-
event.commit();
595+
if (enter_event.should_commit()) {
596+
enter_event.set_previousOwner(_previous_owner_tid);
597+
enter_event.commit();
598+
}
599+
600+
ContinuationEntry* ce = current->last_continuation();
601+
if (ce != nullptr && ce->is_virtual_thread()) {
602+
assert(result != freeze_ok, "sanity check");
603+
current->post_vthread_pinned_event(&vthread_pinned_event, "Contended monitor enter", result);
609604
}
605+
610606
OM_PERFDATA_OP(ContendedLockAttempts, inc());
611607
}
612608

@@ -1662,7 +1658,8 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
16621658

16631659
CHECK_OWNER(); // Throws IMSE if not owner.
16641660

1665-
EventJavaMonitorWait event;
1661+
EventJavaMonitorWait wait_event;
1662+
EventVirtualThreadPinned vthread_pinned_event;
16661663

16671664
// check for a pending interrupt
16681665
if (interruptible && current->is_interrupted(true) && !HAS_PENDING_EXCEPTION) {
@@ -1680,33 +1677,24 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
16801677
// consume an unpark() meant for the ParkEvent associated with
16811678
// this ObjectMonitor.
16821679
}
1683-
if (event.should_commit()) {
1684-
post_monitor_wait_event(&event, this, 0, millis, false);
1680+
if (wait_event.should_commit()) {
1681+
post_monitor_wait_event(&wait_event, this, 0, millis, false);
16851682
}
16861683
THROW(vmSymbols::java_lang_InterruptedException());
16871684
return;
16881685
}
16891686

16901687
current->set_current_waiting_monitor(this);
16911688

1689+
freeze_result result;
16921690
ContinuationEntry* ce = current->last_continuation();
16931691
if (ce != nullptr && ce->is_virtual_thread()) {
1694-
freeze_result result = Continuation::try_preempt(current, ce->cont_oop(current));
1692+
result = Continuation::try_preempt(current, ce->cont_oop(current));
16951693
if (result == freeze_ok) {
16961694
VThreadWait(current, millis);
16971695
current->set_current_waiting_monitor(nullptr);
16981696
return;
16991697
}
1700-
if (result == freeze_pinned_native || result == freeze_unsupported) {
1701-
const Klass* monitor_klass = object()->klass();
1702-
if (!is_excluded(monitor_klass)) {
1703-
if (result == freeze_pinned_native) {
1704-
post_virtual_thread_pinned_event(current,"Native frame or <clinit> on stack");
1705-
} else if (result == freeze_unsupported) {
1706-
post_virtual_thread_pinned_event(current, "Native frame or <clinit> or monitors on stack");
1707-
}
1708-
}
1709-
}
17101698
}
17111699

17121700
// create a node to be put into the queue
@@ -1832,8 +1820,13 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
18321820
}
18331821
}
18341822

1835-
if (event.should_commit()) {
1836-
post_monitor_wait_event(&event, this, node._notifier_tid, millis, ret == OS_TIMEOUT);
1823+
if (wait_event.should_commit()) {
1824+
post_monitor_wait_event(&wait_event, this, node._notifier_tid, millis, ret == OS_TIMEOUT);
1825+
}
1826+
1827+
if (ce != nullptr && ce->is_virtual_thread()) {
1828+
assert(result != freeze_ok, "sanity check");
1829+
current->post_vthread_pinned_event(&vthread_pinned_event, "Object.wait", result);
18371830
}
18381831

18391832
OrderAccess::fence();
@@ -2065,9 +2058,9 @@ bool ObjectMonitor::VThreadWaitReenter(JavaThread* current, ObjectWaiter* node,
20652058
node->_interrupted = !was_notified && current->is_interrupted(false);
20662059

20672060
// Post JFR and JVMTI events.
2068-
EventJavaMonitorWait event;
2069-
if (event.should_commit() || JvmtiExport::should_post_monitor_waited()) {
2070-
vthread_monitor_waited_event(current, node, cont, &event, !was_notified && !node->_interrupted);
2061+
EventJavaMonitorWait wait_event;
2062+
if (wait_event.should_commit() || JvmtiExport::should_post_monitor_waited()) {
2063+
vthread_monitor_waited_event(current, node, cont, &wait_event, !was_notified && !node->_interrupted);
20712064
}
20722065

20732066
// Mark that we are at reenter so that we don't call this method again.

‎src/java.base/share/classes/java/lang/VirtualThread.java

+11-9
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,6 @@ private static class VThreadContinuation extends Continuation {
242242
}
243243
@Override
244244
protected void onPinned(Continuation.Pinned reason) {
245-
// emit JFR event
246-
virtualThreadPinnedEvent(reason.reasonCode(), reason.reasonString());
247245
}
248246
private static Runnable wrap(VirtualThread vthread, Runnable task) {
249247
return new Runnable() {
@@ -261,13 +259,6 @@ public void run() {
261259
}
262260
}
263261

264-
/**
265-
* jdk.VirtualThreadPinned is emitted by HotSpot VM when pinned. Call into VM to
266-
* emit event to avoid having a JFR event in Java with the same name (but different ID)
267-
* to events emitted by the VM.
268-
*/
269-
private static native void virtualThreadPinnedEvent(int reason, String reasonString);
270-
271262
/**
272263
* Runs or continues execution on the current thread. The virtual thread is mounted
273264
* on the current thread before the task runs or continues. It unmounts when the
@@ -833,8 +824,19 @@ private void parkOnCarrierThread(boolean timed, long nanos) {
833824

834825
// consume parking permit
835826
setParkPermit(false);
827+
828+
// JFR jdk.VirtualThreadPinned event
829+
postPinnedEvent("LockSupport.park");
836830
}
837831

832+
/**
833+
* Call into VM when pinned to record a JFR jdk.VirtualThreadPinned event.
834+
* Recording the event in the VM avoids having JFR event recorded in Java
835+
* with the same name, but different ID, to events recorded by the VM.
836+
*/
837+
@Hidden
838+
private static native void postPinnedEvent(String op);
839+
838840
/**
839841
* Re-enables this virtual thread for scheduling. If this virtual thread is parked
840842
* then its task is scheduled to continue, otherwise its next call to {@code park} or

‎src/java.base/share/classes/jdk/internal/vm/Continuation.java

+5-16
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,10 @@ public class Continuation {
5757

5858
/** Reason for pinning */
5959
public enum Pinned {
60-
NATIVE(2, "Native frame or <clinit> on stack"),
61-
MONITOR(3, "Monitor held"),
62-
CRITICAL_SECTION(4, "In critical section");
63-
64-
private final int reasonCode;
65-
private final String reasonString;
66-
Pinned(int reasonCode, String reasonString) {
67-
this.reasonCode = reasonCode;
68-
this.reasonString = reasonString;
69-
}
70-
public int reasonCode() {
71-
return reasonCode;
72-
}
73-
public String reasonString() {
74-
return reasonString;
75-
}
60+
/** Native frame on stack */ NATIVE,
61+
/** Monitor held */ MONITOR,
62+
/** In critical section */ CRITICAL_SECTION,
63+
/** Exception (OOME/SOE) */ EXCEPTION
7664
}
7765

7866
/** Preemption attempt result */
@@ -99,6 +87,7 @@ private static Pinned pinnedReason(int reason) {
9987
case 2 -> Pinned.CRITICAL_SECTION;
10088
case 3 -> Pinned.NATIVE;
10189
case 4 -> Pinned.MONITOR;
90+
case 5 -> Pinned.EXCEPTION;
10291
default -> throw new AssertionError("Unknown pinned reason: " + reason);
10392
};
10493
}

‎src/java.base/share/native/libjava/VirtualThread.c

+2-8
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "jvm.h"
2929
#include "java_lang_VirtualThread.h"
3030

31-
#define THREAD "Ljava/lang/Thread;"
31+
#define STR "Ljava/lang/String;"
3232
#define VIRTUAL_THREAD "Ljava/lang/VirtualThread;"
3333

3434
static JNINativeMethod methods[] = {
@@ -37,17 +37,11 @@ static JNINativeMethod methods[] = {
3737
{ "notifyJvmtiMount", "(Z)V", (void *)&JVM_VirtualThreadMount },
3838
{ "notifyJvmtiUnmount", "(Z)V", (void *)&JVM_VirtualThreadUnmount },
3939
{ "notifyJvmtiDisableSuspend", "(Z)V", (void *)&JVM_VirtualThreadDisableSuspend },
40+
{ "postPinnedEvent", "(" STR ")V", (void *)&JVM_VirtualThreadPinnedEvent },
4041
{ "takeVirtualThreadListToUnblock", "()" VIRTUAL_THREAD, (void *)&JVM_TakeVirtualThreadListToUnblock},
4142
};
4243

4344
JNIEXPORT void JNICALL
4445
Java_java_lang_VirtualThread_registerNatives(JNIEnv *env, jclass clazz) {
4546
(*env)->RegisterNatives(env, clazz, methods, (sizeof(methods)/sizeof(methods[0])));
4647
}
47-
48-
JNIEXPORT void JNICALL
49-
Java_java_lang_VirtualThread_virtualThreadPinnedEvent(JNIEnv *env, jclass ignored,
50-
jint reasonCode, jstring reasonString)
51-
{
52-
JVM_VirtualThreadPinnedEvent(reasonCode, reasonString);
53-
}

‎src/jdk.jfr/share/conf/jfr/default.jfc

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
<event name="jdk.VirtualThreadPinned">
7676
<setting name="enabled">true</setting>
7777
<setting name="stackTrace">true</setting>
78+
<setting name="threshold">20 ms</setting>
7879
</event>
7980

8081
<event name="jdk.VirtualThreadSubmitFailed">

‎src/jdk.jfr/share/conf/jfr/profile.jfc

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
<event name="jdk.VirtualThreadPinned">
7676
<setting name="enabled">true</setting>
7777
<setting name="stackTrace">true</setting>
78+
<setting name="threshold">20 ms</setting>
7879
</event>
7980

8081
<event name="jdk.VirtualThreadSubmitFailed">

‎test/jdk/java/lang/Thread/virtual/VirtualThreadPinnedEventThrows.java

-125
This file was deleted.

‎test/jdk/java/lang/Thread/virtual/java.base/jdk/internal/event/VirtualThreadPinnedEvent.java

-65
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.