From bf3ae29b2c5afece5ab0bdd4e6d74cd93133a858 Mon Sep 17 00:00:00 2001 From: micah Date: Sun, 25 Apr 2021 15:58:16 -0500 Subject: [PATCH] fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a671f12..0756e61 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A wait-free single-producer single-consumer linked-list queue with individually reusable nodes. -`llq` provides smart pointers analogous to `Box` and `Arc` which mark their contents for deferred collection on another thread rather than immediately freeing it, making them safe to drop on a real-time thread. +Queue operations do not block or allocate memory. Individual nodes are allocated and managed separately, and can be reused on multiple queues. # Examples