From 7e126b8fe26c196738cd3d8b03eb329b46ea5198 Mon Sep 17 00:00:00 2001 From: Djordje Nedic Date: Sat, 16 Dec 2023 16:04:37 +0100 Subject: [PATCH] Add lfbb, a lock-free bipartite buffer implementation --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b27c8c5..bf6f14f 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,7 @@ Permanent URL to this list: https://github.com/iDoka/awesome-embedded-software * [LwRB](https://github.com/MaJerle/lwrb) - Lightweight generic ring buffer manager library. * [RingBuffer](https://github.com/wizard97/ArduinoRingBuffer) - Simple Interrupt Safe Ring (Circular) Buffer Queuing Library for Embedded platforms. +* [lfbb](https://github.com/DNedic/lfbb) - Lock-free bipartite buffer, a variant of the ring buffer which can always provide contigous space inside the buffer for reading, writing or modifying the data in-place. ### FIFO