diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-22 16:00:30 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-22 16:00:30 -0400 |
| commit | 00f17d7a204d8add2426cc0b26a2158fd1dc62f6 (patch) | |
| tree | 3b6ef46cfcd22f3f760d3351b68d0549dcd8a640 /docs/application/queue.md | |
| parent | 3a9cf2508dc7341a6d8ff4b8174064600d704994 (diff) | |
slab allocted through alloc
Diffstat (limited to 'docs/application/queue.md')
| -rw-r--r-- | docs/application/queue.md | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
