1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 03:27:04 +09:00

readme tweak

This commit is contained in:
vsadov 2022-09-16 22:14:26 -07:00
parent 865b3a059d
commit f133b36c8e

View file

@ -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.