Skip to content

Commit

Permalink
Fix GA for Corretto (corretto#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrserb authored Feb 19, 2024
1 parent 7c3d294 commit fe98e11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hotspot/src/share/vm/memory/heapInspection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class HeapInspection : public StackObj {
_csv_format(csv_format), _print_help(print_help),
_print_class_stats(print_class_stats), _columns(columns) {}
void heap_inspection(outputStream* st) NOT_SERVICES_RETURN;
size_t populate_table(KlassInfoTable* cit, BoolObjectClosure* filter = NULL) NOT_SERVICES_RETURN;
size_t populate_table(KlassInfoTable* cit, BoolObjectClosure* filter = NULL) NOT_SERVICES_RETURN_(0);
static void find_instances_at_safepoint(Klass* k, GrowableArray<oop>* result) NOT_SERVICES_RETURN;
private:
void iterate_over_heap(KlassInfoTable* cit, BoolObjectClosure* filter = NULL);
Expand Down
2 changes: 1 addition & 1 deletion hotspot/src/share/vm/memory/metaspaceShared.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class MetaspaceShared : AllStatic {
static void preload_and_dump(TRAPS) NOT_CDS_RETURN;
static int preload_and_dump(const char * class_list_path,
GrowableArray<Klass*>* class_promote_order,
TRAPS) NOT_CDS_RETURN;
TRAPS) NOT_CDS_RETURN_(0);

static ReservedSpace* shared_rs() {
CDS_ONLY(return _shared_rs);
Expand Down

0 comments on commit fe98e11

Please sign in to comment.