comparison src/share/vm/gc_interface/collectedHeap.hpp @ 13086:096c224171c4

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Wed, 20 Nov 2013 00:10:38 +0100
parents ae412befde21 85c1ca43713f
children d8041d695d19
comparison
equal deleted inserted replaced
12782:92b7ec34ddfa 13086:096c224171c4
473 // vm thread. It collects the heap assuming that the 473 // vm thread. It collects the heap assuming that the
474 // heap lock is already held and that we are executing in 474 // heap lock is already held and that we are executing in
475 // the context of the vm thread. 475 // the context of the vm thread.
476 virtual void collect_as_vm_thread(GCCause::Cause cause); 476 virtual void collect_as_vm_thread(GCCause::Cause cause);
477 477
478 // Callback from VM_CollectForMetadataAllocation operation.
479 MetaWord* satisfy_failed_metadata_allocation(ClassLoaderData* loader_data,
480 size_t size,
481 Metaspace::MetadataType mdtype);
482
483 // Returns the barrier set for this heap 478 // Returns the barrier set for this heap
484 BarrierSet* barrier_set() { return _barrier_set; } 479 BarrierSet* barrier_set() { return _barrier_set; }
485 480
486 // Returns "true" iff there is a stop-world GC in progress. (I assume 481 // Returns "true" iff there is a stop-world GC in progress. (I assume
487 // that it should answer "false" for the concurrent part of a concurrent 482 // that it should answer "false" for the concurrent part of a concurrent