< prev index next >
src/hotspot/share/runtime/vm_operations.hpp
Print this page
*** 50,60 ****
template(ForceAsyncSafepoint) \
template(Deoptimize) \
template(DeoptimizeFrame) \
template(DeoptimizeAll) \
template(ZombieAll) \
- template(UnlinkSymbols) \
template(Verify) \
template(PrintJNI) \
template(HeapDumper) \
template(DeoptimizeTheWorld) \
template(CollectForMetadataAllocation) \
--- 50,59 ----
*** 351,368 ****
void doit();
bool allow_nested_vm_operations() const { return true; }
};
#endif // PRODUCT
- class VM_UnlinkSymbols: public VM_Operation {
- public:
- VM_UnlinkSymbols() {}
- VMOp_Type type() const { return VMOp_UnlinkSymbols; }
- void doit();
- bool allow_nested_vm_operations() const { return true; }
- };
-
class VM_Verify: public VM_Operation {
public:
VMOp_Type type() const { return VMOp_Verify; }
void doit();
};
--- 350,359 ----
< prev index next >