comparison src/share/vm/gc_implementation/g1/concurrentMark.cpp @ 1547:fb1a39993f69

6951319: enable solaris builds using Sun Studio 12 update 1 Reviewed-by: kamg, ysr, dholmes, johnc
author jcoomes
date Tue, 18 May 2010 11:02:18 -0700
parents 7666957bc44d
children c18cbe5936b8
comparison
equal deleted inserted replaced
1546:a00b51b2dda4 1547:fb1a39993f69
764 G1CollectedHeap* g1h = G1CollectedHeap::heap(); 764 G1CollectedHeap* g1h = G1CollectedHeap::heap();
765 G1CollectorPolicy* g1p = g1h->g1_policy(); 765 G1CollectorPolicy* g1p = g1h->g1_policy();
766 766
767 _has_aborted = false; 767 _has_aborted = false;
768 768
769 #ifndef PRODUCT
769 if (G1PrintReachableAtInitialMark) { 770 if (G1PrintReachableAtInitialMark) {
770 print_reachable("at-cycle-start", 771 print_reachable("at-cycle-start",
771 true /* use_prev_marking */, true /* all */); 772 true /* use_prev_marking */, true /* all */);
772 } 773 }
774 #endif
773 775
774 // Initialise marking structures. This has to be done in a STW phase. 776 // Initialise marking structures. This has to be done in a STW phase.
775 reset(); 777 reset();
776 } 778 }
777 779