src/hotspot/share/gc/z/zNMethod.cpp
changeset 59248 e92153ed8bdc
parent 58353 146bb7afdcf4
child 59290 97d13893ec3c
equal deleted inserted replaced
59247:56bf71d64d51 59248:e92153ed8bdc
   256 private:
   256 private:
   257   bool          _unloading_occurred;
   257   bool          _unloading_occurred;
   258   volatile bool _failed;
   258   volatile bool _failed;
   259 
   259 
   260   void set_failed() {
   260   void set_failed() {
   261     Atomic::store(true, &_failed);
   261     Atomic::store(&_failed, true);
   262   }
   262   }
   263 
   263 
   264   void unlink(nmethod* nm) {
   264   void unlink(nmethod* nm) {
   265     // Unlinking of the dependencies must happen before the
   265     // Unlinking of the dependencies must happen before the
   266     // handshake separating unlink and purge.
   266     // handshake separating unlink and purge.