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/buffer.md | |
| parent | 3a9cf2508dc7341a6d8ff4b8174064600d704994 (diff) | |
slab allocted through alloc
Diffstat (limited to 'docs/application/buffer.md')
| -rw-r--r-- | docs/application/buffer.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/application/buffer.md b/docs/application/buffer.md index 881fb27..ea30458 100644 --- a/docs/application/buffer.md +++ b/docs/application/buffer.md @@ -6,8 +6,8 @@ ```c typedef struct _kpl_buffer { - KPL_POOL_HEADER(struct _kpl_buffer); - uint64_t byte_length; + KPL_ALLOC_HEADER(struct _kpl_buffer); + size_t byte_length; kpl_interface *interface; uint8_t bytes[]; } kpl_buffer; |
