hotspot/src/share/vm/memory/metaspaceShared.hpp
changeset 39714 976b97b59d87
parent 38634 176eda5b3359
child 41182 dbd59c1da636
--- a/hotspot/src/share/vm/memory/metaspaceShared.hpp	Wed Apr 06 21:53:44 2016 -0700
+++ b/hotspot/src/share/vm/memory/metaspaceShared.hpp	Wed Apr 20 16:39:37 2016 -0400
@@ -125,6 +125,7 @@
   static bool _check_classes_made_progress;
   static bool _has_error_classes;
   static bool _archive_loading_failed;
+  static bool _remapped_readwrite;
   static address _cds_i2i_entry_code_buffers;
   static size_t  _cds_i2i_entry_code_buffers_size;
 
@@ -205,6 +206,10 @@
   // sharing is enabled. Simply returns true if sharing is not enabled
   // or if the remapping has already been done by a prior call.
   static bool remap_shared_readonly_as_readwrite() NOT_CDS_RETURN_(true);
+  static bool remapped_readwrite() {
+    CDS_ONLY(return _remapped_readwrite);
+    NOT_CDS(return false);
+  }
 
   static void print_shared_spaces();