src/share/vm/gc_implementation/g1/g1RemSet.inline.hpp

changeset 1061
87fa6e083d82
parent 1051
4f360ec815ba
child 1112
96b229c54d1e
     1.1 --- a/src/share/vm/gc_implementation/g1/g1RemSet.inline.hpp	Mon Mar 09 11:32:57 2009 -0400
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1RemSet.inline.hpp	Tue Mar 10 00:47:05 2009 -0700
     1.3 @@ -94,3 +94,12 @@
     1.4      }
     1.5    }
     1.6  }
     1.7 +
     1.8 +inline void UpdateRSOopClosure::do_oop(narrowOop* p) {
     1.9 +  guarantee(false, "NYI");
    1.10 +}
    1.11 +
    1.12 +inline void UpdateRSOopClosure::do_oop(oop* p) {
    1.13 +  assert(_from != NULL, "from region must be non-NULL");
    1.14 +  _rs->par_write_ref(_from, p, _worker_i);
    1.15 +}

mercurial