diff options
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; |
