Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2117696 | 1.2.2_09 | J. Duke | P5 | Closed | Fixed | 09 |
JDK-2117695 | 1.2.2_05a | J. Duke | P5 | Closed | Fixed | 05a |
JDK-2117697 | 1.2_02 | J. Duke | P5 | Closed | Fixed | 02-pre |
Generational GC makes most GC interruptions short, but you still have to
occasionally collect the larger old generation. With large heaps,
this can cause a considerable interruption; in some applications this
may be annoying or even unacceptable.
The strategy here is to have a separate GC thread that accomplishes
most of the old-generation collection concurrently with the mutator.
This mixes the Xerox PARC "mostly-parallel" collection idea with
generational collection, noting that the write barrier needed for
keeping track of old-to-young pointers also provides "dirty bits"
needed by the mostly-parallel technique, and at a relatively fine
grain.
occasionally collect the larger old generation. With large heaps,
this can cause a considerable interruption; in some applications this
may be annoying or even unacceptable.
The strategy here is to have a separate GC thread that accomplishes
most of the old-generation collection concurrently with the mutator.
This mixes the Xerox PARC "mostly-parallel" collection idea with
generational collection, noting that the write barrier needed for
keeping track of old-to-young pointers also provides "dirty bits"
needed by the mostly-parallel technique, and at a relatively fine
grain.
- backported by
-
JDK-2117695 Optional incremental mark-and-sweep old generation.
-
- Closed
-
-
JDK-2117696 Optional incremental mark-and-sweep old generation.
-
- Closed
-
-
JDK-2117697 Optional incremental mark-and-sweep old generation.
-
- Closed
-