diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-06 15:42:50 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-06 15:42:50 -0400 |
| commit | 7df3d08d8dd0d81f24f0788b44efd37883d3c1c8 (patch) | |
| tree | 8a30d983fe92451f2b7048e06ee8f1121e314a6a /docs/application/queue.md | |
| parent | 1d5f5dd3cd5cc07352379fe33930770e3d203f3a (diff) | |
start io and remove print op
Diffstat (limited to 'docs/application/queue.md')
| -rw-r--r-- | docs/application/queue.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/application/queue.md b/docs/application/queue.md index 86c4009..21ec995 100644 --- a/docs/application/queue.md +++ b/docs/application/queue.md @@ -1,3 +1,17 @@ # Queue --- + +```c +typedef struct _kpl_queue_item { + POOL_HEADER(_kpl_queue_item); + kpl_interface *interface; + kpl_class class; +} kpl_queue_item; + +typedef struct _kpl_queue { + POOL_HEADER(_kpl_queue); + uint32_t length; + kpl_queue_item *head, *tail; +} kpl_queue; +``` |
