src/hotspot/share/code/nmethod.cpp
changeset 59248 e92153ed8bdc
parent 59056 15936b142f86
child 59251 4cbfa5077d68
equal deleted inserted replaced
59247:56bf71d64d51 59248:e92153ed8bdc
   313 ExceptionCache* ExceptionCache::next() {
   313 ExceptionCache* ExceptionCache::next() {
   314   return Atomic::load(&_next);
   314   return Atomic::load(&_next);
   315 }
   315 }
   316 
   316 
   317 void ExceptionCache::set_next(ExceptionCache *ec) {
   317 void ExceptionCache::set_next(ExceptionCache *ec) {
   318   Atomic::store(ec, &_next);
   318   Atomic::store(&_next, ec);
   319 }
   319 }
   320 
   320 
   321 //-----------------------------------------------------------------------------
   321 //-----------------------------------------------------------------------------
   322 
   322 
   323 
   323