src/share/vm/oops/arrayKlass.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 7011386 Cdiff src/share/vm/oops/arrayKlass.hpp

src/share/vm/oops/arrayKlass.hpp

Print this page

        

*** 34,45 **** class arrayKlass: public Klass { friend class VMStructs; private: int _dimension; // This is n'th-dimensional array. ! klassOop _higher_dimension; // Refers the (n+1)'th-dimensional array (if present). ! klassOop _lower_dimension; // Refers the (n-1)'th-dimensional array (if present). int _vtable_len; // size of vtable for this klass juint _alloc_size; // allocation profiling support oop _component_mirror; // component type, as a java/lang/Class public: --- 34,45 ---- class arrayKlass: public Klass { friend class VMStructs; private: int _dimension; // This is n'th-dimensional array. ! volatile klassOop _higher_dimension; // Refers the (n+1)'th-dimensional array (if present). ! volatile klassOop _lower_dimension; // Refers the (n-1)'th-dimensional array (if present). int _vtable_len; // size of vtable for this klass juint _alloc_size; // allocation profiling support oop _component_mirror; // component type, as a java/lang/Class public:
src/share/vm/oops/arrayKlass.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File