From 3a9cf2508dc7341a6d8ff4b8174064600d704994 Mon Sep 17 00:00:00 2001 From: nodist Date: Sun, 21 Jun 2026 11:51:41 -0400 Subject: update memory objs --- docs/application/queue.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/application/queue.md') diff --git a/docs/application/queue.md b/docs/application/queue.md index a04461e..5e8ae15 100644 --- a/docs/application/queue.md +++ b/docs/application/queue.md @@ -6,13 +6,13 @@ ```c typedef struct _kpl_queue_item { - KPL_SLAB_HEADER(_kpl_queue_item); + KPL_SLAB_LIST_HEADER(struct _kpl_queue_item); kpl_any any; } kpl_queue_item; typedef struct _kpl_queue { - KPL_SLAB_HEADER(_kpl_queue); - uint32_t length; + KPL_POOL_HEADER(strcut _kpl_queue); + uint64_t length; kpl_interface *interface; kpl_pool_any *head, *tail; } kpl_queue; -- cgit v1.2.3