comparison src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp @ 10180:ebded0261dfc

8012111: Remove warning about CMS generation shrinking. Reviewed-by: johnc, brutisso, stefank
author jmasa
date Mon, 22 Apr 2013 22:00:03 -0700
parents f36e073d56a4
children b06ac540229e
comparison
equal deleted inserted replaced
10179:a08c80e9e1e5 10180:ebded0261dfc
3424 } 3424 }
3425 3425
3426 void ConcurrentMarkSweepGeneration::shrink_free_list_by(size_t bytes) { 3426 void ConcurrentMarkSweepGeneration::shrink_free_list_by(size_t bytes) {
3427 assert_locked_or_safepoint(Heap_lock); 3427 assert_locked_or_safepoint(Heap_lock);
3428 assert_lock_strong(freelistLock()); 3428 assert_lock_strong(freelistLock());
3429 // XXX Fix when compaction is implemented. 3429 if (PrintGCDetails && Verbose) {
3430 warning("Shrinking of CMS not yet implemented"); 3430 warning("Shrinking of CMS not yet implemented");
3431 }
3431 return; 3432 return;
3432 } 3433 }
3433 3434
3434 3435
3435 // Simple ctor/dtor wrapper for accounting & timer chores around concurrent 3436 // Simple ctor/dtor wrapper for accounting & timer chores around concurrent