From 473112b1541cf81fa3670e0d1cb6de1c4a3281de Mon Sep 17 00:00:00 2001 From: dzwdz Date: Tue, 16 Jul 2024 23:55:32 +0200 Subject: kernel: make kmalloc accept a numeric "tag" instead of a freeform description This will both let me save space in the allocation header, and make the debugprint more readable. --- src/kernel/handle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernel/handle.c') diff --git a/src/kernel/handle.c b/src/kernel/handle.c index 06a810c..0703cac 100644 --- a/src/kernel/handle.c +++ b/src/kernel/handle.c @@ -8,7 +8,7 @@ #include Handle *handle_init(enum handle_type type) { - Handle *h = kzalloc(sizeof *h, "handle"); + Handle *h = kzalloc(sizeof *h, TagHandle); h->type = type; h->refcount = 1; return h; -- cgit v1.2.3