src/hotspot/share/gc/z/zPage.cpp
changeset 54168 eb54b34af2be
parent 54162 f344a0c6e19e
child 54169 5748eae24183
--- a/src/hotspot/share/gc/z/zPage.cpp	Mon Mar 18 11:50:40 2019 +0100
+++ b/src/hotspot/share/gc/z/zPage.cpp	Mon Mar 18 11:50:40 2019 +0100
@@ -48,12 +48,11 @@
 
 ZPage::~ZPage() {
   assert(!is_active(), "Should not be active");
-  assert(is_detached(), "Should be detached");
+  assert(_physical.is_null(), "Should be detached");
 }
 
 void ZPage::reset() {
   assert(!is_active(), "Should not be active");
-  assert(!is_detached(), "Should not be detached");
 
   _seqnum = ZGlobalSeqNum;
   _top = start();
@@ -67,11 +66,10 @@
 }
 
 void ZPage::print_on(outputStream* out) const {
-  out->print_cr(" %-6s  " PTR_FORMAT " " PTR_FORMAT " " PTR_FORMAT " %s%s%s%s",
+  out->print_cr(" %-6s  " PTR_FORMAT " " PTR_FORMAT " " PTR_FORMAT " %s%s%s",
                 type_to_string(), start(), top(), end(),
                 is_allocating()  ? " Allocating"  : "",
                 is_relocatable() ? " Relocatable" : "",
-                is_detached()    ? " Detached"    : "",
                 !is_active()     ? " Inactive"    : "");
 }