From ebcb48032b90f7a27883b86fac0503ba51b1ad1d Mon Sep 17 00:00:00 2001 From: leon Date: Wed, 24 Dec 2025 16:52:28 +0100 Subject: [PATCH] Add another idea --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index cc93d18..6ec130e 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ A collection of random ideas - [Parse CS Demos](#parse-cs-demos) - [Implement jiffy Queue](#implement-jiffy-queue) - [Implement Combine-and-Exchange locks](#implement-combine-and-exchange-locks) +- [Custom Rust async runtime](#custom-rust-async-runtime) ## Projects ### Mathematical model for Factorio @@ -110,6 +111,13 @@ I already worked a bit on analysing cs demos in the past and would love to have It should be flexible enough to allow one to build different tools using it. ### Implement jiffy Queue +A lock free queue + ### Implement Combine-and-Exchange locks +A different type of lock for async contexts + #### References - [Paper proposing the idea](https://arxiv.org/abs/2511.09194) + +### Custom Rust async runtime +A custom async runtime for rust to try out my own ideas for a runtime.