< prev index next >

src/hotspot/share/jfr/leakprofiler/utilities/saveRestore.cpp

CLD claiming
   _cld->clear_claimed();
 }
 
 CLDClaimContext::~CLDClaimContext() {
   if (_cld != NULL) {
-    _cld->claim();
+    _cld->claim(ClassLoaderData::_claim_value_strong);
     assert(_cld->claimed(), "invariant");
   }
 }
 
 CLDClaimContext::CLDClaimContext(const CLDClaimContext& rhs) : _cld(NULL) {
    
< prev index next >