Properly structure the directories

This commit is contained in:
lol3rrr
2026-04-27 23:21:51 +02:00
parent 8fafa39c88
commit 3e0317723c
44 changed files with 43 additions and 43 deletions

View File

@@ -0,0 +1,7 @@
# Crystalline memory reclaimation
A lock-free/wait-free (depending on configuration used) memory reclaimation scheme for concurrent data structures.
I want to implement this as a Rust crate, with a safe interface that should basically make it impossible to misuse (as little unsafe as possible in public API)
## References
- [Paper](https://dl.acm.org/doi/full/10.1145/3658851)
- [Previous attempt](https://github.com/Lol3rrr/angeldust)