From 00f17d7a204d8add2426cc0b26a2158fd1dc62f6 Mon Sep 17 00:00:00 2001 From: nodist Date: Mon, 22 Jun 2026 16:00:30 -0400 Subject: slab allocted through alloc --- docs/application/buffer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/application/buffer.md') 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; -- cgit v1.2.3