Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hotspot/share/runtime/vmOperation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
template(GTestExecuteAtSafepoint) \
template(GTestStopSafepoint) \
template(JFROldObject) \
template(ClassPrintLayout) \
template(PrintClassLayout) \
template(RendezvousGCThreads) \
template(JFRInitializeCPUTimeSampler) \
template(JFRTerminateCPUTimeSampler) \
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/runtime/vmOperations.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ class VM_PrintClassLayout: public VM_Operation {
char* _class_name;
public:
VM_PrintClassLayout(outputStream* st, char* class_name): _out(st), _class_name(class_name) {}
VMOp_Type type() const { return VMOp_PrintClassHierarchy; }
VMOp_Type type() const { return VMOp_PrintClassLayout; }
void doit();
};

Expand Down