< prev index next >

src/hotspot/share/gc/g1/satbMarkQueue.cpp

8201171: Cleanup in g1CollectedHeap, change CamelCase to snake_case
Reviewed-by:

*** 101,111 **** return true; } inline bool retain_entry(const void* entry, G1CollectedHeap* heap) { ! return requires_marking(entry, heap) && !heap->isMarkedNext((oop)entry); } // This method removes entries from a SATB buffer that will not be // useful to the concurrent marking threads. Entries are retained if // they require marking and are not already marked. Retained entries --- 101,111 ---- return true; } inline bool retain_entry(const void* entry, G1CollectedHeap* heap) { ! return requires_marking(entry, heap) && !heap->is_marked_next((oop)entry); } // This method removes entries from a SATB buffer that will not be // useful to the concurrent marking threads. Entries are retained if // they require marking and are not already marked. Retained entries
< prev index next >