< prev index next >

src/share/vm/oops/markOop.cpp

Print this page

        

*** 47,57 **** ObjectMonitor* mon = monitor(); if (mon == NULL) st->print("monitor=NULL"); else { BasicLock * bl = (BasicLock *) mon->owner(); ! st->print("monitor={count="INTPTR_FORMAT",waiters="INTPTR_FORMAT",recursions="INTPTR_FORMAT",owner="INTPTR_FORMAT"}", mon->count(), mon->waiters(), mon->recursions(), p2i(bl)); } } else { st->print("??"); } --- 47,57 ---- ObjectMonitor* mon = monitor(); if (mon == NULL) st->print("monitor=NULL"); else { BasicLock * bl = (BasicLock *) mon->owner(); ! st->print("monitor={count=" INTPTR_FORMAT ",waiters=" INTPTR_FORMAT ",recursions=" INTPTR_FORMAT ",owner=" INTPTR_FORMAT "}", mon->count(), mon->waiters(), mon->recursions(), p2i(bl)); } } else { st->print("??"); }
< prev index next >