src/hotspot/share/classfile/classLoader.inline.hpp
changeset 59290 97d13893ec3c
parent 59247 56bf71d64d51
equal deleted inserted replaced
59289:c887851da33d 59290:97d13893ec3c
    24 
    24 
    25 #ifndef SHARE_CLASSFILE_CLASSLOADER_INLINE_HPP
    25 #ifndef SHARE_CLASSFILE_CLASSLOADER_INLINE_HPP
    26 #define SHARE_CLASSFILE_CLASSLOADER_INLINE_HPP
    26 #define SHARE_CLASSFILE_CLASSLOADER_INLINE_HPP
    27 
    27 
    28 #include "classfile/classLoader.hpp"
    28 #include "classfile/classLoader.hpp"
    29 #include "runtime/orderAccess.hpp"
    29 #include "runtime/atomic.hpp"
    30 
    30 
    31 // Next entry in class path
    31 // Next entry in class path
    32 inline ClassPathEntry* ClassPathEntry::next() const { return Atomic::load_acquire(&_next); }
    32 inline ClassPathEntry* ClassPathEntry::next() const { return Atomic::load_acquire(&_next); }
    33 
    33 
    34 inline void ClassPathEntry::set_next(ClassPathEntry* next) {
    34 inline void ClassPathEntry::set_next(ClassPathEntry* next) {