diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-11-01 09:34:19 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-11-01 09:34:19 +0000 |
| commit | b0f666ba15ff2db3178ca54242308e3dd5dd6faa (patch) | |
| tree | dd109e93fa236aa42914624fb7330834b9473feb /arch/x86_64/include | |
| parent | 98edc76893b2e22ccdbd81a4a3f1e1113c712cba (diff) | |
| download | teachos-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.hpp | 7 |
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) |
