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

Merge
author tonyp
date Thu, 21 Aug 2008 23:36:31 -0400
parents 1fdb98a17101
children c18cbe5936b8
comparison
equal deleted inserted replaced
355:0edda524b58c 356:1ee8caae33af
1 /* 1 /*
2 * Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 2005-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.
59 _region_start = 0; 59 _region_start = 0;
60 _region_size = 0; 60 _region_size = 0;
61 if (_virtual_space != NULL) { 61 if (_virtual_space != NULL) {
62 delete _virtual_space; 62 delete _virtual_space;
63 _virtual_space = NULL; 63 _virtual_space = NULL;
64 // Release memory reserved in the space.
65 rs.release();
64 } 66 }
65 return false; 67 return false;
66 } 68 }
67 69
68 #ifdef ASSERT 70 #ifdef ASSERT