mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
7161545: G1: Minor cleanups to the G1 logging
Rename "to-space-overflow" to "to-space-exhausted", Introduce one decimal point in the size format, Add Sum to the aggregate and re-order the entries, Add number of GC workers to the log output Reviewed-by: johnc, jwilhelm
This commit is contained in:
parent
17b26a6a0c
commit
b68794be17
4 changed files with 36 additions and 39 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -188,17 +188,17 @@ inline const char* proper_unit_for_byte_size(size_t s) {
|
|||
}
|
||||
}
|
||||
|
||||
inline size_t byte_size_in_proper_unit(size_t s) {
|
||||
template <class T>
|
||||
inline T byte_size_in_proper_unit(T s) {
|
||||
if (s >= 10*M) {
|
||||
return s/M;
|
||||
return (T)(s/M);
|
||||
} else if (s >= 10*K) {
|
||||
return s/K;
|
||||
return (T)(s/K);
|
||||
} else {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
// VM type definitions
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue