src/share/vm/classfile/symbolTable.hpp

changeset 5196
8dbc025ff709
parent 4850
ede380e13960
child 5277
01522ca68fc7
     1.1 --- a/src/share/vm/classfile/symbolTable.hpp	Mon May 27 12:56:34 2013 +0200
     1.2 +++ b/src/share/vm/classfile/symbolTable.hpp	Mon May 27 12:58:42 2013 +0200
     1.3 @@ -272,7 +272,10 @@
     1.4  
     1.5    // GC support
     1.6    //   Delete pointers to otherwise-unreachable objects.
     1.7 -  static void unlink(BoolObjectClosure* cl);
     1.8 +  static void unlink_or_oops_do(BoolObjectClosure* cl, OopClosure* f);
     1.9 +  static void unlink(BoolObjectClosure* cl) {
    1.10 +    unlink_or_oops_do(cl, NULL);
    1.11 +  }
    1.12  
    1.13    // Invoke "f->do_oop" on the locations of all oops in the table.
    1.14    static void oops_do(OopClosure* f);

mercurial