diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-23 11:12:31 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-23 11:13:38 +0200 |
| commit | 54a0f4c49d9bfb955174c87dae2f442d7f5a8b25 (patch) | |
| tree | ad59d31c9444fcfc6d5f0da7b17c8843710e6014 /tooling | |
| parent | fc67c4af554189c941c811486a0b2b21aa3f54ea (diff) | |
feat!(Kernel): Improvements on the BitMapMgr, HTS, and UPS.
other:
- Add ZXD header file.
- Reworking AMD64 interrupts.
- Improved HTS's design implementation.
- Improved UPS's balancing implementation.
breaking changes:
- Rename MemoryMgr to HeapMgr.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'tooling')
| -rw-r--r-- | tooling/mkfs.hefs.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tooling/mkfs.hefs.cc b/tooling/mkfs.hefs.cc index 3dcfd11b..fcb0c006 100644 --- a/tooling/mkfs.hefs.cc +++ b/tooling/mkfs.hefs.cc @@ -55,7 +55,7 @@ int main(int argc, char** argv) { kLabel = mkfs::get_option<char8_t>(args_wide, u8"-L"); if (!kSectorSize) { - mkfs::console_out() << "hefs: error: Sector size size is zero.\n"; + mkfs::console_out() << "hefs: error: Sector size size is set to zero.\n"; return EXIT_FAILURE; } @@ -65,7 +65,7 @@ int main(int argc, char** argv) { std::strtol(mkfs::get_option<char>(args, "-S").data(), nullptr, 10) * 1024 * 1024 * 1024; if (!kDiskSize) { - mkfs::console_out() << "hefs: error: Disk size is zero.\n"; + mkfs::console_out() << "hefs: error: Disk size is set to zero.\n"; return EXIT_FAILURE; } |
