summaryrefslogtreecommitdiff
path: root/mem/docs/framer.9.scd
diff options
context:
space:
mode:
authorAlejandro Sior <aho@sior.be>2022-07-26 14:06:40 +0200
committerAlejandro Sior <aho@sior.be>2022-07-26 14:06:40 +0200
commite0fbf5ca9599cb7599731fe48573e97d05fa38da (patch)
tree2c3b3925c49fd2da68086c6cb4b06a891e823bd5 /mem/docs/framer.9.scd
parentc4e9a8ba15391ae5f1c820744ff1b03544d63467 (diff)
mem/vmap: add basic virtual memory management abstraction
Diffstat (limited to 'mem/docs/framer.9.scd')
-rw-r--r--mem/docs/framer.9.scd4
1 files changed, 2 insertions, 2 deletions
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.