From 47a27b0fd6eb0831a74479883ba0b4c30d226fbe Mon Sep 17 00:00:00 2001 From: nodist Date: Mon, 15 Jun 2026 15:23:58 -0400 Subject: memory slab as well as pooling --- docs/application/error.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/application/error.md') diff --git a/docs/application/error.md b/docs/application/error.md index dcf0a34..77a97cb 100644 --- a/docs/application/error.md +++ b/docs/application/error.md @@ -6,9 +6,9 @@ ```c typedef struct _kpl_error { - KPL_POOL_HEADER(_kpl_error); - int32_t line; + KPL_SLAB_HEADER(_kpl_error); char *file, *function; kpl_class class; + int32_t line; } kpl_error; ``` -- cgit v1.2.3