From 47a27b0fd6eb0831a74479883ba0b4c30d226fbe Mon Sep 17 00:00:00 2001 From: nodist Date: Mon, 15 Jun 2026 15:23:58 -0400 Subject: memory slab as well as pooling --- docs/application/queue.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/application/queue.md') diff --git a/docs/application/queue.md b/docs/application/queue.md index cab2e0b..a04461e 100644 --- a/docs/application/queue.md +++ b/docs/application/queue.md @@ -6,12 +6,12 @@ ```c typedef struct _kpl_queue_item { - KPL_POOL_HEADER(_kpl_queue_item); + KPL_SLAB_HEADER(_kpl_queue_item); kpl_any any; } kpl_queue_item; typedef struct _kpl_queue { - KPL_POOL_HEADER(_kpl_queue); + KPL_SLAB_HEADER(_kpl_queue); uint32_t length; kpl_interface *interface; kpl_pool_any *head, *tail; -- cgit v1.2.3