< prev index next >

src/share/vm/gc/g1/ptrQueue.cpp

Print this page
rev 12504 : [mq]: cleanup_concat_log

*** 1,7 **** /* ! * Copyright (c) 2001, 2016, 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) 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 40,50 **** PtrQueue::~PtrQueue() { assert(_permanent || (_buf == NULL), "queue must be flushed before delete"); } void PtrQueue::flush_impl() { ! if (!_permanent && _buf != NULL) { BufferNode* node = BufferNode::make_node_from_buffer(_buf, _index); if (is_empty()) { // No work to do. qset()->deallocate_buffer(node); } else { --- 40,50 ---- PtrQueue::~PtrQueue() { assert(_permanent || (_buf == NULL), "queue must be flushed before delete"); } void PtrQueue::flush_impl() { ! if (_buf != NULL) { BufferNode* node = BufferNode::make_node_from_buffer(_buf, _index); if (is_empty()) { // No work to do. qset()->deallocate_buffer(node); } else {
< prev index next >