comparison src/share/vm/memory/referenceProcessor.cpp @ 21870:12dcf5ba8b34

Merge with jdk8u45-b14
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 09 Jun 2015 11:54:04 +0200
parents be896a1983c0 35c7330b68e2
children c28cb37b2e1d
comparison
equal deleted inserted replaced
21801:ea56cec1de34 21870:12dcf5ba8b34
253 253
254 // Process cleaners, but include them in phantom statistics. We expect 254 // Process cleaners, but include them in phantom statistics. We expect
255 // Cleaner references to be temporary, and don't want to deal with 255 // Cleaner references to be temporary, and don't want to deal with
256 // possible incompatibilities arising from making it more visible. 256 // possible incompatibilities arising from making it more visible.
257 phantom_count += 257 phantom_count +=
258 process_discovered_reflist(_discoveredCleanerRefs, NULL, false, 258 process_discovered_reflist(_discoveredCleanerRefs, NULL, true,
259 is_alive, keep_alive, complete_gc, task_executor); 259 is_alive, keep_alive, complete_gc, task_executor);
260 } 260 }
261 261
262 // Weak global JNI references. It would make more sense (semantically) to 262 // Weak global JNI references. It would make more sense (semantically) to
263 // traverse these simultaneously with the regular weak references above, but 263 // traverse these simultaneously with the regular weak references above, but