hotspot/src/share/vm/gc/g1/g1ParScanThreadState_ext.cpp
changeset 35051 002d874a4284
parent 32737 f02118695c2f
--- a/hotspot/src/share/vm/gc/g1/g1ParScanThreadState_ext.cpp	Thu Dec 10 14:24:26 2015 +0000
+++ b/hotspot/src/share/vm/gc/g1/g1ParScanThreadState_ext.cpp	Wed Dec 09 16:05:24 2015 +0100
@@ -29,3 +29,10 @@
 G1ParScanThreadState* G1ParScanThreadStateSet::new_par_scan_state(uint worker_id, size_t young_cset_length) {
   return new G1ParScanThreadState(_g1h, worker_id, young_cset_length);
 }
+
+template <typename T>
+void G1ParScanThreadState::do_oop_ext(T* ref) {
+}
+
+template void G1ParScanThreadState::do_oop_ext<oop>(oop* ref);
+template void G1ParScanThreadState::do_oop_ext<narrowOop>(narrowOop* ref);