src/hotspot/share/gc/shared/barrierSet.hpp
changeset 49007 82d9d5744e5f
parent 48961 120b61d50f85
child 49041 44122f767467
--- a/src/hotspot/share/gc/shared/barrierSet.hpp	Fri Feb 16 12:18:09 2018 +0100
+++ b/src/hotspot/share/gc/shared/barrierSet.hpp	Fri Feb 16 12:18:09 2018 +0100
@@ -115,7 +115,8 @@
   // is redone until it succeeds. This can e.g. prevent allocations from the slow path
   // to be in old.
   virtual void on_slowpath_allocation_exit(JavaThread* thread, oop new_obj) {}
-  virtual void flush_deferred_barriers(JavaThread* thread) {}
+  virtual void on_thread_attach(JavaThread* thread) {}
+  virtual void on_thread_detach(JavaThread* thread) {}
   virtual void make_parsable(JavaThread* thread) {}
 
 protected: