diff options
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/DriveManager.cxx | 6 | ||||
| -rw-r--r-- | Source/Heap.cxx | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/Source/DriveManager.cxx b/Source/DriveManager.cxx index 4c924b75..23e08707 100644 --- a/Source/DriveManager.cxx +++ b/Source/DriveManager.cxx @@ -25,7 +25,11 @@ namespace hCore } } - DriveTraits& DriveSelector::GetMounted() { MUST_PASS(fDrive != nullptr); return *fDrive; } + DriveTraits& DriveSelector::GetMounted() + { + MUST_PASS(fDrive != nullptr); + return *fDrive; + } bool DriveSelector::Mount(DriveTraits* drive) { diff --git a/Source/Heap.cxx b/Source/Heap.cxx index a4bc72a8..0a159c4e 100644 --- a/Source/Heap.cxx +++ b/Source/Heap.cxx @@ -11,6 +11,9 @@ #include <NewKit/PageManager.hpp> #include <NewKit/Panic.hpp> +/// @file Heap.cxx +/// @brief hCore Process Heap Manager +/// @note if you want to look at kernel allocs, please look for KHeap.cxx /// bugs: 0 namespace hCore |
