summaryrefslogtreecommitdiff
path: root/docs/application/queue.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-28 13:41:22 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-28 13:41:22 -0400
commitcf9285b1dbdf687630076149413f16e5d4af82e8 (patch)
tree7c10f7587cab9cd40c0d1b9e019cd4a2135e7193 /docs/application/queue.md
parent254059e2ea2df0cd63cf75d836ac9ebe00a28302 (diff)
type body object definitions and garbage collection algoHEADmain
Diffstat (limited to 'docs/application/queue.md')
-rw-r--r--docs/application/queue.md2
1 files changed, 1 insertions, 1 deletions
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;