diff options
author | dzwdz | 2024-07-16 23:55:32 +0200 |
---|---|---|
committer | dzwdz | 2024-07-17 00:01:15 +0200 |
commit | 473112b1541cf81fa3670e0d1cb6de1c4a3281de (patch) | |
tree | 4df8f777e2150468e8866f4496e1de32b309ccda /src/kernel/handleset.c | |
parent | e29f0e294ac841e2036fe514df4ed66f5d0ec46f (diff) |
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.
Diffstat (limited to 'src/kernel/handleset.c')
-rw-r--r-- | src/kernel/handleset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/handleset.c b/src/kernel/handleset.c index fc2d426..cf8160b 100644 --- a/src/kernel/handleset.c +++ b/src/kernel/handleset.c @@ -7,7 +7,7 @@ HandleSet * hs_init(void) { - HandleSet *hs = kzalloc(sizeof *hs, "handles"); + HandleSet *hs = kzalloc(sizeof *hs, TagHandleset); hs->refcount = 1; return hs; } |