src/share/vm/memory/universe.hpp

changeset 4177
633ba56cb013
parent 4159
8e47bac5643a
parent 4176
4202510ee0fe
child 4523
10d5f25a7c67
     1.1 --- a/src/share/vm/memory/universe.hpp	Fri Oct 12 14:06:27 2012 -0700
     1.2 +++ b/src/share/vm/memory/universe.hpp	Wed Oct 17 13:59:57 2012 -0700
     1.3 @@ -435,8 +435,14 @@
     1.4  
     1.5    // Debugging
     1.6    static bool verify_in_progress() { return _verify_in_progress; }
     1.7 -  static void verify(bool silent = false,
     1.8 -                     VerifyOption option = VerifyOption_Default );
     1.9 +  static void verify(bool silent, VerifyOption option);
    1.10 +  static void verify(bool silent) {
    1.11 +    verify(silent, VerifyOption_Default /* option */);
    1.12 +  }
    1.13 +  static void verify() {
    1.14 +    verify(false /* silent */);
    1.15 +  }
    1.16 +
    1.17    static int  verify_count()       { return _verify_count; }
    1.18    // The default behavior is to call print_on() on gclog_or_tty.
    1.19    static void print();

mercurial