mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8080775: Better argument formatting for assert() and friends
Reviewed-by: kbarrett, pliden
This commit is contained in:
parent
aa0818a98a
commit
1e71f67736
225 changed files with 1342 additions and 1432 deletions
|
@ -630,8 +630,8 @@ void VMThread::execute(VM_Operation* op) {
|
|||
// Check the VM operation allows nested VM operation. This normally not the case, e.g., the compiler
|
||||
// does not allow nested scavenges or compiles.
|
||||
if (!prev_vm_operation->allow_nested_vm_operations()) {
|
||||
fatal(err_msg("Nested VM operation %s requested by operation %s",
|
||||
op->name(), vm_operation()->name()));
|
||||
fatal("Nested VM operation %s requested by operation %s",
|
||||
op->name(), vm_operation()->name());
|
||||
}
|
||||
op->set_calling_thread(prev_vm_operation->calling_thread(), prev_vm_operation->priority());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue