comparison src/share/vm/gc_implementation/parallelScavenge/psMarkSweepDecorator.cpp @ 356:1ee8caae33af

Merge
author tonyp
date Thu, 21 Aug 2008 23:36:31 -0400
parents 850fdf70db2b
children a4b729f5b611
comparison
equal deleted inserted replaced
355:0edda524b58c 356:1ee8caae33af
1 /* 1 /*
2 * Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 2001-2008 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
436 436
437 assert(compaction_top() >= space()->bottom() && compaction_top() <= space()->end(), 437 assert(compaction_top() >= space()->bottom() && compaction_top() <= space()->end(),
438 "should point inside space"); 438 "should point inside space");
439 space()->set_top(compaction_top()); 439 space()->set_top(compaction_top());
440 440
441 if (mangle_free_space) space()->mangle_unused_area(); 441 if (mangle_free_space) {
442 } 442 space()->mangle_unused_area();
443 }
444 }