ParNewGeneration.java revision 9883:903a2e023ffb
1255376Sdes/*
2255376Sdes * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
3255376Sdes * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
491094Sdes *
591094Sdes * This code is free software; you can redistribute it and/or modify it
691094Sdes * under the terms of the GNU General Public License version 2 only, as
791094Sdes * published by the Free Software Foundation.
891094Sdes *
991094Sdes * This code is distributed in the hope that it will be useful, but WITHOUT
1091094Sdes * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1191094Sdes * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12108794Sdes * version 2 for more details (a copy is included in the LICENSE file that
1391094Sdes * accompanied this code).
14117610Sdes *
15174832Sdes * You should have received a copy of the GNU General Public License version
1691094Sdes * 2 along with this work; if not, write to the Free Software Foundation,
1791094Sdes * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18236109Sdes *
1991100Sdes * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2091100Sdes * or visit www.oracle.com if you need additional information or have any
21141098Sdes * questions.
22228692Sdes *
23228692Sdes */
24141098Sdes
25228692Sdespackage sun.jvm.hotspot.gc.cms;
26228692Sdes
27228692Sdesimport sun.jvm.hotspot.debugger.*;
28228692Sdesimport sun.jvm.hotspot.gc.serial.*;
29228692Sdesimport sun.jvm.hotspot.gc.shared.*;
30228692Sdes
3191094Sdespublic class ParNewGeneration extends DefNewGeneration {
3291094Sdes  public ParNewGeneration(Address addr) {
33236109Sdes    super(addr);
3491100Sdes  }
3591100Sdes
3691100Sdes  public Generation.Name kind() {
3791094Sdes    return Generation.Name.PAR_NEW;
38228692Sdes  }
39228692Sdes}
4091094Sdes