diff src/share/vm/runtime/sharedRuntime.cpp @ 1731:ee5cc9e78493

Merge
author never
date Fri, 20 Aug 2010 09:55:50 -0700
parents a62d332029cf
children 3e8fbc61cee8
line wrap: on
line diff
--- a/src/share/vm/runtime/sharedRuntime.cpp	Fri Aug 20 04:08:08 2010 -0700
+++ b/src/share/vm/runtime/sharedRuntime.cpp	Fri Aug 20 09:55:50 2010 -0700
@@ -2493,15 +2493,13 @@
   }
 
   // Must unlock before calling set_code
+
   // Install the generated code.
   if (nm != NULL) {
     method->set_code(method, nm);
     nm->post_compiled_method_load_event();
   } else {
     // CodeCache is full, disable compilation
-    // Ought to log this but compile log is only per compile thread
-    // and we're some non descript Java thread.
-    MutexUnlocker mu(AdapterHandlerLibrary_lock);
     CompileBroker::handle_full_code_cache();
   }
   return nm;