Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hotspot/src/share/vm/gc_implementation/g1/dirtyCardQueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ BufferNode* DirtyCardQueueSet::get_completed_buffer(int stop_at) {
}

bool DirtyCardQueueSet::apply_closure_to_completed_buffer_helper(CardTableEntryClosure* cl,
uint worker_i,
BufferNode* nd) {
uint worker_i,
BufferNode* nd) {
if (nd != NULL) {
void **buf = BufferNode::make_buffer_from_node(nd);
size_t index = nd->index();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class DirtyCardQueue: public PtrQueue {
void** buf, size_t index, size_t sz,
bool consume = true,
uint worker_i = 0);
void** get_buf() { return _buf;}
void **get_buf() { return _buf;}
size_t get_index() { return _index;}
void reinitialize() { _buf = 0; _sz = 0; _index = 0;}
};
Expand Down