From e0fbf5ca9599cb7599731fe48573e97d05fa38da Mon Sep 17 00:00:00 2001 From: Alejandro Sior Date: Tue, 26 Jul 2022 14:06:40 +0200 Subject: mem/vmap: add basic virtual memory management abstraction --- mem/docs/framer.9.scd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mem/docs/framer.9.scd') diff --git a/mem/docs/framer.9.scd b/mem/docs/framer.9.scd index 5836e19..1bc3670 100644 --- a/mem/docs/framer.9.scd +++ b/mem/docs/framer.9.scd @@ -1,4 +1,4 @@ -MEMFRAMER(9) +MEM_FRAMER(9) # NAME @@ -18,7 +18,7 @@ void mem_framer_free(MemAllocator *self, void *ptr); # DESCRIPTION -*MemFramer* and its related functions is an implementation of memallocator(9) designed to manage the allocation and freeing of chunks of same size - they are called _frames_ - that are boundary aligned on multiples of that size. +*MemFramer* and its related functions is an implementation of mem_allocator(9) designed to manage the allocation and freeing of chunks of same size - they are called _frames_ - that are boundary aligned on multiples of that size. *MemFramer* is a linked-list allocator, meaning that when a frame is requested, it can either pop the frame from a free list (a linked list of frames that have previously been freed), or bump a new frame from the region of usable memory that it manages. -- cgit v1.2.3