hotspot/src/share/vm/runtime/vm_operations.hpp
changeset 20290 2127dc70bce9
parent 18025 b7bcf7497f93
child 22551 9bf46d16dcc6
--- a/hotspot/src/share/vm/runtime/vm_operations.hpp	Fri Sep 27 08:39:19 2013 +0200
+++ b/hotspot/src/share/vm/runtime/vm_operations.hpp	Fri Sep 27 10:50:55 2013 +0200
@@ -51,7 +51,6 @@
   template(DeoptimizeAll)                         \
   template(ZombieAll)                             \
   template(UnlinkSymbols)                         \
-  template(HandleFullCodeCache)                   \
   template(Verify)                                \
   template(PrintJNI)                              \
   template(HeapDumper)                            \
@@ -261,16 +260,6 @@
   bool allow_nested_vm_operations() const        { return true;  }
 };
 
-class VM_HandleFullCodeCache: public VM_Operation {
- private:
-  bool  _is_full;
- public:
-  VM_HandleFullCodeCache(bool is_full)           { _is_full = is_full; }
-  VMOp_Type type() const                         { return VMOp_HandleFullCodeCache; }
-  void doit();
-  bool allow_nested_vm_operations() const        { return true; }
-};
-
 #ifndef PRODUCT
 class VM_DeoptimizeAll: public VM_Operation {
  private: