--- old/src/share/vm/gc/shared/collectedHeap.cpp 2017-03-09 23:56:51.488734372 -0500 +++ new/src/share/vm/gc/shared/collectedHeap.cpp 2017-03-09 23:56:51.376728904 -0500 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2001, 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 @@ -158,6 +158,22 @@ trace_heap(GCWhen::AfterGC, gc_tracer); } +// WhiteBox API support for concurrent collectors. These are the +// default implementations, for collectors which don't support this +// feature. +bool CollectedHeap::supports_concurrent_phase_control() const { + return false; +} + +const char* const* CollectedHeap::concurrent_phases() const { + static const char* const result[] = { NULL }; + return result; +} + +bool CollectedHeap::request_concurrent_phase(const char* phase) { + return false; +} + // Memory state functions.