< prev index next >

src/hotspot/share/gc/shared/gcName.hpp

Print this page
rev 52710 : Upstream/backport Shenandoah to JDK11u

*** 1,7 **** /* ! * Copyright (c) 2002, 2017, 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) 2002, 2018, 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.
*** 37,46 **** --- 37,47 ---- G1New, ConcurrentMarkSweep, G1Old, G1Full, Z, + Shenandoah, NA, GCNameEndSentinel }; class GCNameHelper {
*** 56,65 **** --- 57,67 ---- case G1New: return "G1New"; case ConcurrentMarkSweep: return "ConcurrentMarkSweep"; case G1Old: return "G1Old"; case G1Full: return "G1Full"; case Z: return "Z"; + case Shenandoah: return "Shenandoah"; case NA: return "N/A"; default: ShouldNotReachHere(); return NULL; } } };
< prev index next >