mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
6888954: argument formatting for assert() and friends
Reviewed-by: kvn, twisti, apetrusenko, never, dcubed
This commit is contained in:
parent
7e76feaf42
commit
99196ff9ca
37 changed files with 396 additions and 211 deletions
|
@ -593,7 +593,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()) {
|
||||
fatal2("Nested VM operation %s requested by operation %s", op->name(), vm_operation()->name());
|
||||
fatal(err_msg("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