< prev index next >

src/hotspot/share/runtime/objectMonitor.hpp

Print this page
rev 60098 : 8246476: remove AsyncDeflateIdleMonitors option and the safepoint based deflation mechanism
Reviewed-by: dholmes, pchilanomate, coleenp
rev 60099 : coleenp CR

@@ -309,13 +309,13 @@
     // _cxq == 0 _succ == NULL _owner == NULL _waiters == 0
     // _contentions == 0 EntryList  == NULL
     // _recursions == 0 _WaitSet == NULL
 #ifdef ASSERT
     stringStream ss;
-#endif
     assert((is_busy() | _recursions) == 0, "freeing in-use monitor: %s, "
            "recursions=" INTX_FORMAT, is_busy_to_string(&ss), _recursions);
+#endif
     _succ          = NULL;
     _EntryList     = NULL;
     _cxq           = NULL;
     _WaitSet       = NULL;
     _recursions    = 0;
< prev index next >