aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)