diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-07-08 20:21:32 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-07-08 20:21:32 -0400 |
| commit | 4b46d1e1b306a8573113aa971c5f8811256e2bd0 (patch) | |
| tree | dc26bf8eb4185978063f91dc1c793bf79b06159e /docs/application/queue.md | |
| parent | 51c371db6ced53b8f9198890672961ef912a9aad (diff) | |
ring buffer pool allocators
Diffstat (limited to 'docs/application/queue.md')
| -rw-r--r-- | docs/application/queue.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/application/queue.md b/docs/application/queue.md index cd9f363..a770ac7 100644 --- a/docs/application/queue.md +++ b/docs/application/queue.md @@ -6,13 +6,12 @@ ```c typedef struct _kpl_queue_item { - KPL_SLAB_LIST_HEADER(struct _kpl_queue_item); + struct _kpl_queue_item *prev, *next; kpl_any any; } kpl_queue_item; typedef struct _kpl_queue { - KPL_SLAB_HEADER(struct _kpl_queue); - size_t item_length; + int32_t item_length; kpl_interface *interface; kpl_pool_any *head, *tail; } kpl_queue; |
