< prev index next >

src/hotspot/share/runtime/objectMonitor.inline.hpp

Print this page
rev 47400 : [mq]: cmpxchg_ptr

*** 34,43 **** --- 34,47 ---- inline markOop ObjectMonitor::header() const { return _header; } + inline markOopDesc* volatile* ObjectMonitor::header_addr() { + return &_header; + } + inline void ObjectMonitor::set_header(markOop hdr) { _header = hdr; } inline jint ObjectMonitor::count() const {
< prev index next >