hotspot/src/share/vm/compiler/compileBroker.cpp
changeset 6270 d628c75fbf48
parent 6187 4fa7845f7c14
child 6418 6671edbd230e
--- a/hotspot/src/share/vm/compiler/compileBroker.cpp	Thu Aug 12 23:34:34 2010 -0700
+++ b/hotspot/src/share/vm/compiler/compileBroker.cpp	Fri Aug 13 15:14:00 2010 -0700
@@ -1652,12 +1652,10 @@
 void CompileBroker::handle_full_code_cache() {
   UseInterpreter = true;
   if (UseCompiler || AlwaysCompileLoopMethods ) {
-    CompilerThread* thread = CompilerThread::current();
-    CompileLog* log = thread->log();
-    if (log != NULL) {
-      log->begin_elem("code_cache_full");
-      log->stamp();
-      log->end_elem();
+    if (xtty != NULL) {
+      xtty->begin_elem("code_cache_full");
+      xtty->stamp();
+      xtty->end_elem();
     }
     warning("CodeCache is full. Compiler has been disabled.");
     warning("Try increasing the code cache size using -XX:ReservedCodeCacheSize=");