--- old/src/share/vm/gc/shared/collectedHeap.cpp 2017-02-17 20:09:46.054071167 -0500 +++ new/src/share/vm/gc/shared/collectedHeap.cpp 2017-02-17 20:09:45.954066058 -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,17 @@ 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; +} + +bool CollectedHeap::request_concurrent_phase(const char* phase) { + return false; +} + // Memory state functions.