Update README.md 2

This commit is contained in:
Mid 2025-09-03 01:28:39 +03:00
parent 8afa09cbf0
commit 8aab5dd153

View File

@ -6,7 +6,7 @@ Completed features:
1. Per-thread heap /w special heap for exited threads called the "dead heap"
2. Naive mark & sweep GC
3. Thread-safe user interface (but barely tested)
3. Completely thread-safe, including lock-free implementation for tables
Impotent is still work-in-progress:
@ -16,6 +16,7 @@ Impotent is still work-in-progress:
4. Tables cannot be resized
5. Most operators are still missing
6. The user API is completely different from that of PoC Lua
7. Being lock-free, tables are not split to "array" and "hash" parts
Impotent requires C11 and an architecture with 8-byte atomic operations, but otherwise it is completely cross-platform.