comparison src/share/vm/gc_interface/collectedHeap.cpp @ 13060:8f07aa079343

8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking 7057939: jmap shows MaxNewSize=4GB when Java is using parallel collector Summary: Major cleanup of the collectorpolicy classes Reviewed-by: tschatzl, jcoomes
author jwilhelm
date Fri, 01 Nov 2013 17:09:38 +0100
parents 85c1ca43713f
children 096c224171c4 1e1c8d358b52
comparison
equal deleted inserted replaced
13059:46d7652b223c 13060:8f07aa079343
467 #endif 467 #endif
468 468
469 fill_with_object_impl(start, words, zap); 469 fill_with_object_impl(start, words, zap);
470 } 470 }
471 471
472 void CollectedHeap::post_initialize() {
473 collector_policy()->post_heap_initialize();
474 }
475
472 HeapWord* CollectedHeap::allocate_new_tlab(size_t size) { 476 HeapWord* CollectedHeap::allocate_new_tlab(size_t size) {
473 guarantee(false, "thread-local allocation buffers not supported"); 477 guarantee(false, "thread-local allocation buffers not supported");
474 return NULL; 478 return NULL;
475 } 479 }
476 480