Skip to content

Commit 0eb372f

Browse files
committedFeb 11, 2022
Merge branch 'fibers' of github:openjdk/loom into fibers
2 parents aed64e9 + 9a503aa commit 0eb372f

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed
 

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -247,27 +247,27 @@ JvmtiVTMTDisabler::~JvmtiVTMTDisabler() {
247247
void
248248
JvmtiVTMTDisabler::disable_VTMT() {
249249
JavaThread* thread = JavaThread::current();
250-
int attempts = 10;
250+
int attempts = 1000;
251251
{
252252
ThreadBlockInVM tbivm(thread);
253253
MonitorLocker ml(JvmtiVTMT_lock, Mutex::_no_safepoint_check_flag);
254254

255255
assert(!thread->is_in_VTMT(), "VTMT sanity check");
256256
while (_SR_mode) { // suspender or resumer is a JvmtiVTMTDisabler monopolist
257-
ml.wait(1000); // wait while there is an active suspender or resumer
257+
ml.wait(10); // wait while there is an active suspender or resumer
258258
}
259259
if (_is_SR) {
260260
_SR_mode = true;
261261
while (_VTMT_disable_count > 0) {
262-
ml.wait(1000); // wait while there is any active jvmtiVTMTDisabler
262+
ml.wait(10); // wait while there is any active jvmtiVTMTDisabler
263263
}
264264
}
265265
Atomic::inc(&_VTMT_disable_count);
266266

267267
// Block while some mount/unmount transitions are in progress.
268268
// Debug version fails and print diagnostic information
269269
while (_VTMT_count > 0) {
270-
if (ml.wait(1000)) {
270+
if (ml.wait(10)) {
271271
attempts--;
272272
}
273273
DEBUG_ONLY(if (attempts == 0) break;)
@@ -308,7 +308,7 @@ JvmtiVTMTDisabler::start_VTMT(jthread vthread, int callsite_tag) {
308308
JavaThread* thread = JavaThread::current();
309309
HandleMark hm(thread);
310310
Handle vth = Handle(thread, JNIHandles::resolve_external_guard(vthread));
311-
int attempts = 10 * 100;
311+
int attempts = 1000;
312312

313313
// Avoid using MonitorLocker on performance critical path, use
314314
// two-level synchronization with lock-free operations on counters.

‎test/hotspot/jtreg/ProblemList-vthread.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
vmTestbase/nsk/stress/jni/gclocker/gcl001.java 8278569 generic-all
44

5+
56
##########
67
## Tests failing when main() is executed in additional kernel or virtual thread
78

‎test/hotspot/jtreg/serviceability/jvmti/GetLocalVariable/libGetLocalWithoutSuspendTest.cpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 2020 SAP SE. All rights reserved.
3+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
34
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
45
*
56
* This code is free software; you can redistribute it and/or modify it
@@ -328,7 +329,7 @@ void JNICALL VMInit(jvmtiEnv *jvmti, JNIEnv *env, jthread thr) {
328329
jvmtiError err;
329330
jobject agent_thread_name;
330331
jclass thread_clas;
331-
jmethodID thread_ctro;
332+
jmethodID thread_ctor;
332333
jthread agent_thread;
333334

334335
printf("AGENT: VM init event\n");
@@ -340,16 +341,16 @@ void JNICALL VMInit(jvmtiEnv *jvmti, JNIEnv *env, jthread thr) {
340341
}
341342

342343
thread_clas = env->FindClass("java/lang/Thread");
343-
if (agent_thread_name == NULL) {
344+
if (thread_clas == NULL) {
344345
env->FatalError("VMInit: java.lang.Thread class not found\n");
345346
}
346347

347-
thread_ctro = env->GetMethodID(thread_clas, "<init>", "(Ljava/lang/String;)V");
348-
if (thread_ctro == NULL) {
348+
thread_ctor = env->GetMethodID(thread_clas, "<init>", "(Ljava/lang/String;)V");
349+
if (thread_ctor == NULL) {
349350
env->FatalError("VMInit: failed to get ID for the Thread ctor\n");
350351
}
351352

352-
agent_thread = (jthread) env->NewObject(thread_clas, thread_ctro, agent_thread_name);
353+
agent_thread = (jthread) env->NewObject(thread_clas, thread_ctor, agent_thread_name);
353354
if (agent_thread == NULL) {
354355
env->FatalError("VMInit: Failed to allocate thread object\n");
355356
}

0 commit comments

Comments
 (0)
Please sign in to comment.