mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 01:24:33 +02:00
8153582: Logging of ConcGCThreads is done too early
ConcGCThreads is logged as 0 because it hasn't been initialized yet. Reviewed-by: tschatzl, dfazunen
This commit is contained in:
parent
2f4c6f1b05
commit
5648deddee
3 changed files with 4 additions and 2 deletions
|
@ -1641,7 +1641,6 @@ void Arguments::set_cms_and_parnew_gc_flags() {
|
|||
}
|
||||
|
||||
log_trace(gc)("MarkStackSize: %uk MarkStackSizeMax: %uk", (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
|
||||
log_trace(gc)("ConcGCThreads: %u", ConcGCThreads);
|
||||
}
|
||||
#endif // INCLUDE_ALL_GCS
|
||||
|
||||
|
@ -1949,7 +1948,6 @@ void Arguments::set_g1_gc_flags() {
|
|||
}
|
||||
|
||||
log_trace(gc)("MarkStackSize: %uk MarkStackSizeMax: %uk", (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
|
||||
log_trace(gc)("ConcGCThreads: %u", ConcGCThreads);
|
||||
}
|
||||
|
||||
void Arguments::set_gc_specific_flags() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue