src/share/vm/gc_implementation/parallelScavenge/cardTableExtension.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/gc_implementation/parallelScavenge/cardTableExtension.hpp

src/share/vm/gc_implementation/parallelScavenge/cardTableExtension.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 52,62 **** youngergen_card = CardTableModRefBS::CT_MR_BS_last_reserved + 1, verify_card = CardTableModRefBS::CT_MR_BS_last_reserved + 5 }; CardTableExtension(MemRegion whole_heap) : ! CardTableModRefBS(whole_heap) { } // Too risky for the 4/10/02 putback // BarrierSet::Name kind() { return BarrierSet::CardTableExtension; } // Scavenge support --- 52,62 ---- youngergen_card = CardTableModRefBS::CT_MR_BS_last_reserved + 1, verify_card = CardTableModRefBS::CT_MR_BS_last_reserved + 5 }; CardTableExtension(MemRegion whole_heap) : ! CardTableModRefBS(whole_heap, BarrierSet::CardTableModRef) { } // Too risky for the 4/10/02 putback // BarrierSet::Name kind() { return BarrierSet::CardTableExtension; } // Scavenge support
src/share/vm/gc_implementation/parallelScavenge/cardTableExtension.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File