Skip to content
Closed
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions src/hotspot/share/gc/g1/g1HRPrinter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class G1HRPrinter {
action, hr->get_type_str(), p2i(hr->bottom()), p2i(hr->top()), p2i(hr->end()));
}

void mark_reclaim(HeapRegion* hr) {
void mark_reclaim(G1HeapRegion* hr) {
print("MARK-RECLAIM", hr);
}

Expand Down Expand Up @@ -90,7 +90,7 @@ class G1HRPrinter {
}
}

void evac_reclaim(HeapRegion* hr) {
void evac_reclaim(G1HeapRegion* hr) {
if (is_active()) {
print("EVAC-RECLAIM", hr);
}
Expand Down