mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
7099849: G1: include heap region information in hs_err files
Reviewed-by: johnc, brutisso, poonam
This commit is contained in:
parent
83958f54fb
commit
44b419af51
11 changed files with 59 additions and 38 deletions
|
@ -414,9 +414,13 @@ class Universe: AllStatic {
|
|||
static bool verify_in_progress() { return _verify_in_progress; }
|
||||
static void verify(bool allow_dirty = true, bool silent = false,
|
||||
VerifyOption option = VerifyOption_Default );
|
||||
static int verify_count() { return _verify_count; }
|
||||
static int verify_count() { return _verify_count; }
|
||||
// The default behavior is to call print_on() on gclog_or_tty.
|
||||
static void print();
|
||||
static void print_on(outputStream* st);
|
||||
// The extended parameter determines which method on the heap will
|
||||
// be called: print_on() (extended == false) or print_extended_on()
|
||||
// (extended == true).
|
||||
static void print_on(outputStream* st, bool extended = false);
|
||||
static void print_heap_at_SIGBREAK();
|
||||
static void print_heap_before_gc() { print_heap_before_gc(gclog_or_tty); }
|
||||
static void print_heap_after_gc() { print_heap_after_gc(gclog_or_tty); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue