complete ipc rds

This commit is contained in:
2026-07-11 13:38:18 +02:00
parent 5c563909d3
commit 45315e52af
2 changed files with 35 additions and 71 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#include <stdlib.h>
typedef struct {
uint8_t *bits; // one bit stored per byte (0/1) — throughput is tiny, simplicity wins
uint8_t *bits;
size_t capacity;
_Atomic size_t head, tail;
} bit_ring_t;