Skip to content

Commit 769a1f9

Browse files
committedDec 10, 2019
8235515: TestBasicLogOutput.java crashes due to EXCEPTION_ACCESS_VIOLATION in HandshakeThreadsOperation::do_handshake
Signal _done sempahore after executing name() in log_debug() Reviewed-by: dcubed, mdoerr
1 parent 25b5ddc commit 769a1f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -271,14 +271,14 @@ void HandshakeThreadsOperation::do_handshake(JavaThread* thread) {
271271
_executed = true;
272272
}
273273

274-
// Use the semaphore to inform the VM thread that we have completed the operation
275-
_done.signal();
276-
277274
if (start_time_ns != 0) {
278275
jlong completion_time = os::javaTimeNanos() - start_time_ns;
279276
log_debug(handshake, task)("Operation: %s for thread " PTR_FORMAT ", is_vm_thread: %s, completed in " JLONG_FORMAT " ns",
280277
name(), p2i(thread), BOOL_TO_STR(Thread::current()->is_VM_thread()), completion_time);
281278
}
279+
280+
// Use the semaphore to inform the VM thread that we have completed the operation
281+
_done.signal();
282282
}
283283

284284
void Handshake::execute(HandshakeClosure* thread_cl) {

0 commit comments

Comments
 (0)
Please sign in to comment.