From 48e8f6bfa5961a5d7f1620df07646f933514a285 Mon Sep 17 00:00:00 2001 From: Peter Teuben Date: Wed, 25 Dec 2024 19:41:40 -0500 Subject: [PATCH] future todo --- src/kernel/cores/allocate.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/kernel/cores/allocate.c b/src/kernel/cores/allocate.c index 2476cd9d3..60d6e0146 100644 --- a/src/kernel/cores/allocate.c +++ b/src/kernel/cores/allocate.c @@ -23,6 +23,9 @@ #include #include +/* _FL are versions that report File and Line ; see WD notes in stdinc.h */ +/* @todo consider mm_malloc() for efficiency ? */ + void *allocate_FL(size_t nb, const_string file, int line) { void *mem;