aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/include
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2024-11-01 09:34:19 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2024-11-01 09:34:19 +0000
commitb0f666ba15ff2db3178ca54242308e3dd5dd6faa (patch)
treedd109e93fa236aa42914624fb7330834b9473feb /arch/x86_64/include
parent98edc76893b2e22ccdbd81a4a3f1e1113c712cba (diff)
downloadteachos-b0f666ba15ff2db3178ca54242308e3dd5dd6faa.tar.xz
teachos-b0f666ba15ff2db3178ca54242308e3dd5dd6faa.zip
Fix comment
Diffstat (limited to 'arch/x86_64/include')
-rw-r--r--arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp b/arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp
index a028e30..9417c37 100644
--- a/arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp
+++ b/arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp
@@ -14,7 +14,12 @@ namespace teachos::arch::memory::allocator
struct tiny_frame_allocator
{
/**
- * @brief Defaulted constructor.
+ * @brief Constructor.
+ *
+ * @tparam T Type constraint of the allocator, being that is follows the given concept and contains an allocate and
+ * deallocate method.
+ * @param allocator Reference to an allocator following the FrameAllocator concept, which is used to allocate
+ * entries *when a new page table is required.
*/
template<FrameAllocator T>
tiny_frame_allocator(T & allocator)