< prev index next >

src/share/vm/code/nmethod.cpp

Print this page

        

@@ -1132,12 +1132,15 @@
       log_identity(xtty);
       xtty->stamp();
       xtty->end_elem();
     }
   }
+
+  const char *state_msg = _state == zombie ? "made zombie" : "made not entrant";
+  CompileTask::print_ul(this, state_msg);
   if (PrintCompilation && _state != unloaded) {
-    print_on(tty, _state == zombie ? "made zombie" : "made not entrant");
+    print_on(tty, state_msg);
   }
 }
 
 /**
  * Common functionality for both make_not_entrant and make_zombie
< prev index next >