You need to sign in or sign up before continuing.
  • T
    7000559: G1: assertion failure !outer || (full_collections_started ==... · 26d512ac
    tonyp 提交于
    7000559: G1: assertion failure !outer || (full_collections_started == _full_collections_completed + 1)
    Summary: The concurrent marking thread can complete its operation and increment the full GC counter during a Full GC. This causes the nesting of increments to the start and end of Full GCs that we are expecting to be wrong. the fix is for the marking thread to join the suspendible thread set before incrementing the counter so that it's blocked until the Full GC (or any other safepoint) is finished. The change also includes some minor code cleanup (I renamed a parameter).
    Reviewed-by: brutisso, ysr
    26d512ac
concurrentMarkThread.cpp 11.0 KB