hotspot/src/share/vm/opto/output.cpp
changeset 38219 d4fc04931803
parent 38029 c645d414429f
child 40032 bc2e42cd23ea
--- a/hotspot/src/share/vm/opto/output.cpp	Wed Apr 13 14:48:22 2016 +0200
+++ b/hotspot/src/share/vm/opto/output.cpp	Fri Apr 22 16:05:00 2016 +0200
@@ -1548,6 +1548,10 @@
       }
       dump_asm(node_offsets, node_offset_limit);
       if (xtty != NULL) {
+        // print_metadata and dump_asm above may safepoint which makes us loose the ttylock.
+        // Retake lock too make sure the end tag is coherent, and that xmlStream->pop_tag is done
+        // thread safe
+        ttyLocker ttyl2;
         xtty->tail("opto_assembly");
       }
     }