src/hotspot/share/gc/shared/barrierSet.hpp
changeset 54006 a421bdf22394
parent 53244 9807daeb47c4
child 54366 2b48cedce327
equal deleted inserted replaced
54005:6ffb8d7fe1e4 54006:a421bdf22394
   128   // is redone until it succeeds. This can e.g. prevent allocations from the slow path
   128   // is redone until it succeeds. This can e.g. prevent allocations from the slow path
   129   // to be in old.
   129   // to be in old.
   130   virtual void on_slowpath_allocation_exit(JavaThread* thread, oop new_obj) {}
   130   virtual void on_slowpath_allocation_exit(JavaThread* thread, oop new_obj) {}
   131   virtual void on_thread_create(Thread* thread) {}
   131   virtual void on_thread_create(Thread* thread) {}
   132   virtual void on_thread_destroy(Thread* thread) {}
   132   virtual void on_thread_destroy(Thread* thread) {}
   133   virtual void on_thread_attach(JavaThread* thread) {}
   133   virtual void on_thread_attach(Thread* thread) {}
   134   virtual void on_thread_detach(JavaThread* thread) {}
   134   virtual void on_thread_detach(Thread* thread) {}
   135   virtual void make_parsable(JavaThread* thread) {}
   135   virtual void make_parsable(JavaThread* thread) {}
   136 
   136 
   137 #ifdef CHECK_UNHANDLED_OOPS
   137 #ifdef CHECK_UNHANDLED_OOPS
   138   virtual bool oop_equals_operator_allowed() { return true; }
   138   virtual bool oop_equals_operator_allowed() { return true; }
   139 #endif
   139 #endif