From 00f17d7a204d8add2426cc0b26a2158fd1dc62f6 Mon Sep 17 00:00:00 2001 From: nodist Date: Mon, 22 Jun 2026 16:00:30 -0400 Subject: slab allocted through alloc --- 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 5e8ae15..2807ce9 100644 --- a/docs/application/queue.md +++ b/docs/application/queue.md @@ -11,8 +11,8 @@ typedef struct _kpl_queue_item { } kpl_queue_item; typedef struct _kpl_queue { - KPL_POOL_HEADER(strcut _kpl_queue); - uint64_t length; + KPL_ALLOC_HEADER(struct _kpl_queue); + size_t item_length; kpl_interface *interface; kpl_pool_any *head, *tail; } kpl_queue; -- cgit v1.2.3