--- old/src/share/vm/gc/shared/taskqueue.inline.hpp 2017-06-14 14:52:24.735447015 +0200 +++ new/src/share/vm/gc/shared/taskqueue.inline.hpp 2017-06-14 14:52:24.611443231 +0200 @@ -44,13 +44,13 @@ template inline void GenericTaskQueue::initialize() { - _elems = ArrayAllocator::allocate(N); + _elems = ArrayAllocator::allocate(N, F); } template inline GenericTaskQueue::~GenericTaskQueue() { assert(false, "This code is currently never called"); - ArrayAllocator::free(const_cast(_elems), N); + ArrayAllocator::free(const_cast(_elems), N); } template