Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8271609: Misleading message for AbortVMOnVMOperationTimeoutDelay
Reviewed-by: dholmes
  • Loading branch information
albertnetymk committed Aug 3, 2021
1 parent c8add22 commit b217a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/runtime/vmThread.cpp
Expand Up @@ -60,7 +60,7 @@ void VMOperationTimeoutTask::task() {
if (is_armed()) {
jlong delay = nanos_to_millis(os::javaTimeNanos() - _arm_time);
if (delay > AbortVMOnVMOperationTimeoutDelay) {
fatal("VM operation took too long: " JLONG_FORMAT " ms (timeout: " INTX_FORMAT " ms)",
fatal("VM operation took too long: " JLONG_FORMAT " ms elapsed since VM-op start (timeout: " INTX_FORMAT " ms)",
delay, AbortVMOnVMOperationTimeoutDelay);
}
}
Expand Down

1 comment on commit b217a6c

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.