From cf9285b1dbdf687630076149413f16e5d4af82e8 Mon Sep 17 00:00:00 2001 From: nodist Date: Sun, 28 Jun 2026 13:41:22 -0400 Subject: type body object definitions and garbage collection algo --- docs/application/queue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/application/queue.md') diff --git a/docs/application/queue.md b/docs/application/queue.md index 2807ce9..cd9f363 100644 --- a/docs/application/queue.md +++ b/docs/application/queue.md @@ -11,7 +11,7 @@ typedef struct _kpl_queue_item { } kpl_queue_item; typedef struct _kpl_queue { - KPL_ALLOC_HEADER(struct _kpl_queue); + KPL_SLAB_HEADER(struct _kpl_queue); size_t item_length; kpl_interface *interface; kpl_pool_any *head, *tail; -- cgit v1.2.3