mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-08 03:27:04 +09:00
readme tweak
This commit is contained in:
parent
865b3a059d
commit
f133b36c8e
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ A simple garbage collector that incorporates various ideas that I had over time.
|
|||
- [x] Compacting GC.
|
||||
- can optionally relocate objects to reduce fragmentation.
|
||||
- [x] Concurrent GC.
|
||||
- all major phases, except relocation, can be done concurrently with managed code.
|
||||
- all major phases, except optional relocation, can be done concurrently with user code.
|
||||
- [x] Parallel GC
|
||||
- GC can employ multiple threads as needed.
|
||||
- [x] Thread-local GC.
|
||||
|
@ -31,7 +31,7 @@ A simple garbage collector that incorporates various ideas that I had over time.
|
|||
- [x] Precise and Conservative modes
|
||||
- supports precise and conservative stack root reporting.
|
||||
- [x] Low-latency mode.
|
||||
- "nearly pauseless" mode when sensitive to the heap size blocking phases are turned off.
|
||||
- "nearly pauseless" mode when blocking phases sensitive to the heap size are turned off.
|
||||
- [x] Trimming of committed set.
|
||||
- lazy return of unused memory to the OS.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue