From 82bd19117313e6d61ab2ac03583e22b8a627f14a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matteo=20Gm=C3=BCr?= Date: Wed, 4 Dec 2024 15:32:19 +0000 Subject: Add doxygen docs file --- docs/arch/x86_64/memory/heap/bump_allocator.rst | 5 +++++ docs/arch/x86_64/memory/heap/concept.rst | 5 +++++ docs/arch/x86_64/memory/heap/linked_list_allocator.rst | 5 +++++ docs/arch/x86_64/memory/heap/memory_block.rst | 5 +++++ 4 files changed, 20 insertions(+) create mode 100644 docs/arch/x86_64/memory/heap/bump_allocator.rst create mode 100644 docs/arch/x86_64/memory/heap/concept.rst create mode 100644 docs/arch/x86_64/memory/heap/linked_list_allocator.rst create mode 100644 docs/arch/x86_64/memory/heap/memory_block.rst (limited to 'docs/arch/x86_64/memory/heap') diff --git a/docs/arch/x86_64/memory/heap/bump_allocator.rst b/docs/arch/x86_64/memory/heap/bump_allocator.rst new file mode 100644 index 0000000..185f00b --- /dev/null +++ b/docs/arch/x86_64/memory/heap/bump_allocator.rst @@ -0,0 +1,5 @@ +Heap Bump Allocator +======================= + +.. doxygenfile:: arch/x86_64/include/arch/memory/heap/bump_allocator.hpp + diff --git a/docs/arch/x86_64/memory/heap/concept.rst b/docs/arch/x86_64/memory/heap/concept.rst new file mode 100644 index 0000000..c0c3123 --- /dev/null +++ b/docs/arch/x86_64/memory/heap/concept.rst @@ -0,0 +1,5 @@ +Heap Allocator Concept +======================= + +.. doxygenfile:: arch/x86_64/include/arch/memory/heap/concept.hpp + diff --git a/docs/arch/x86_64/memory/heap/linked_list_allocator.rst b/docs/arch/x86_64/memory/heap/linked_list_allocator.rst new file mode 100644 index 0000000..26b25ab --- /dev/null +++ b/docs/arch/x86_64/memory/heap/linked_list_allocator.rst @@ -0,0 +1,5 @@ +Heap Linked List Allocator +======================= + +.. doxygenfile:: arch/x86_64/include/arch/memory/heap/linked_list_allocator.hpp + diff --git a/docs/arch/x86_64/memory/heap/memory_block.rst b/docs/arch/x86_64/memory/heap/memory_block.rst new file mode 100644 index 0000000..8ed6566 --- /dev/null +++ b/docs/arch/x86_64/memory/heap/memory_block.rst @@ -0,0 +1,5 @@ +Heap Linked List Free Memory Block +======================= + +.. doxygenfile:: arch/x86_64/include/arch/memory/heap/memory_block.hpp + -- cgit v1.2.3