See: Description
| Class | Description |
|---|---|
| NoGC |
This class implements the global state of a a simple allocator
without a collector.
|
| NoGCCollector |
This class implements per-collector thread behavior and state
for the NoGC plan, which simply allocates (without ever collecting
until the available space is exhausted.
|
| NoGCConstraints |
This class and its subclasses communicate to the host VM/Runtime
any features of the selected plan that it needs to know.
|
| NoGCMutator |
This class implements per-mutator thread behavior and state
for the NoGC plan, which simply allocates (without ever collecting
until the available space is exhausted.
|
| NoGCTraceLocal |
This class implements the thread-local core functionality for a transitive
closure over the heap graph.
|
A VM built with this collector will crash when all available memory has been exhausted.
It will also crash when a collection is triggered via System.gc() (or
equivalent).