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,9 @@
# Implement Combine-and-Exchange locks
A different type of lock for async contexts
## References
- [Paper proposing the idea](https://arxiv.org/abs/2511.09194)
## Considerations
The runtime/continuation interface they are using in the paper is not possible in Rust (AFAIK), so we need some other way to get it to work.
Likely this can only be done by integrating with the runtime directly.