--- old/src/hotspot/share/gc/z/zHeap.cpp 2018-03-06 13:23:12.839124807 +0100 +++ new/src/hotspot/share/gc/z/zHeap.cpp 2018-03-06 13:23:12.672117637 +0100 @@ -194,6 +194,14 @@ return _pagetable.addr(); } +uint ZHeap::nconcurrent_worker_threads() const { + return _workers.nconcurrent(); +} + +uint ZHeap::nconcurrent_no_boost_worker_threads() const { + return _workers.nconcurrent_no_boost(); +} + void ZHeap::set_boost_worker_threads(bool boost) { _workers.set_boost(boost); }