< prev index next >

src/hotspot/share/memory/metaspace/printCLDMetaspaceInfoClosure.hpp

Print this page
rev 60538 : imported patch jep387-misc.patch

@@ -1,7 +1,8 @@
 /*
- * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2020 SAP SE. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -26,10 +27,11 @@
 #define SHARE_MEMORY_METASPACE_PRINTCLDMETASPACEINFOCLOSURE_HPP
 
 #include "memory/iterator.hpp"
 #include "memory/metaspace.hpp"
 #include "memory/metaspace/metaspaceStatistics.hpp"
+#include "memory/metaspace/metaspaceEnums.hpp"
 #include "utilities/globalDefinitions.hpp"
 
 class outputStream;
 
 namespace metaspace {

@@ -45,14 +47,14 @@
 public:
 
   uintx                           _num_loaders;
   uintx                           _num_loaders_without_metaspace;
   uintx                           _num_loaders_unloading;
-  ClassLoaderMetaspaceStatistics  _stats_total;
+  clms_stats_t                    _stats_total;
 
   uintx                           _num_loaders_by_spacetype [Metaspace::MetaspaceTypeCount];
-  ClassLoaderMetaspaceStatistics  _stats_by_spacetype [Metaspace::MetaspaceTypeCount];
+  clms_stats_t                    _stats_by_spacetype [Metaspace::MetaspaceTypeCount];
 
   uintx                           _num_classes_by_spacetype [Metaspace::MetaspaceTypeCount];
   uintx                           _num_classes_shared_by_spacetype [Metaspace::MetaspaceTypeCount];
   uintx                           _num_classes;
   uintx                           _num_classes_shared;
< prev index next >