mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
Merge
This commit is contained in:
commit
68ff9b2b00
31 changed files with 245 additions and 124 deletions
|
@ -479,8 +479,8 @@ void VMError::report(outputStream* st) {
|
|||
|
||||
if (fr.sp()) {
|
||||
st->print(", sp=" PTR_FORMAT, fr.sp());
|
||||
st->print(", free space=%" INTPTR_FORMAT "k",
|
||||
((intptr_t)fr.sp() - (intptr_t)stack_bottom) >> 10);
|
||||
size_t free_stack_size = pointer_delta(fr.sp(), stack_bottom, 1024);
|
||||
st->print(", free space=" SIZE_FORMAT "k", free_stack_size);
|
||||
}
|
||||
|
||||
st->cr();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue