src/share/vm/memory/universe.hpp

changeset 3269
53074c2c4600
parent 3050
fdb992d83a87
child 3571
09d00c18e323
     1.1 --- a/src/share/vm/memory/universe.hpp	Mon Nov 07 22:11:12 2011 -0500
     1.2 +++ b/src/share/vm/memory/universe.hpp	Tue Nov 08 00:41:28 2011 -0500
     1.3 @@ -414,9 +414,13 @@
     1.4    static bool verify_in_progress() { return _verify_in_progress; }
     1.5    static void verify(bool allow_dirty = true, bool silent = false,
     1.6                       VerifyOption option = VerifyOption_Default );
     1.7 -  static int  verify_count()                  { return _verify_count; }
     1.8 +  static int  verify_count()       { return _verify_count; }
     1.9 +  // The default behavior is to call print_on() on gclog_or_tty.
    1.10    static void print();
    1.11 -  static void print_on(outputStream* st);
    1.12 +  // The extended parameter determines which method on the heap will
    1.13 +  // be called: print_on() (extended == false) or print_extended_on()
    1.14 +  // (extended == true).
    1.15 +  static void print_on(outputStream* st, bool extended = false);
    1.16    static void print_heap_at_SIGBREAK();
    1.17    static void print_heap_before_gc() { print_heap_before_gc(gclog_or_tty); }
    1.18    static void print_heap_after_gc()  { print_heap_after_gc(gclog_or_tty); }

mercurial