summaryrefslogtreecommitdiffhomepage
path: root/Private/Source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-31 12:41:06 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-31 12:41:06 +0100
commitf7edf08d067b4c52c3183e8ad0467293e54075e8 (patch)
tree0e2894d78684966993ff2bed2df4d6c5e12aef87 /Private/Source
parentfc55f0d69d24fb4908cbd811681f2c3fac53614d (diff)
Add BUG_LIST.TXT, kernel improvements and Public kits improvements.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/Source')
-rw-r--r--Private/Source/DriveManager.cxx4
-rw-r--r--Private/Source/GUIDWizard.cxx3
-rw-r--r--Private/Source/NewFS-IO.cxx2
-rw-r--r--Private/Source/Variant.cxx2
4 files changed, 6 insertions, 5 deletions
diff --git a/Private/Source/DriveManager.cxx b/Private/Source/DriveManager.cxx
index 9611575d..10c4d28e 100644
--- a/Private/Source/DriveManager.cxx
+++ b/Private/Source/DriveManager.cxx
@@ -29,7 +29,7 @@ bool DriveSelector::Mount(DriveTraits *drive) {
fDrive = drive;
fDrive->fMount();
- kcout << "[Mount] drive: " << fDrive->fName << "\n";
+ kcout << "Mount drive: " << fDrive->fName << "\n";
return true;
}
@@ -45,7 +45,7 @@ DriveTraits *DriveSelector::Unmount() {
fDrive->fUnmount();
fDrive = nullptr;
- kcout << "[Unmount] drive: " << drivePointer->fName << "\n";
+ kcout << "Unmount drive: " << drivePointer->fName << "\n";
return drivePointer;
}
diff --git a/Private/Source/GUIDWizard.cxx b/Private/Source/GUIDWizard.cxx
index 57915f64..829a27d8 100644
--- a/Private/Source/GUIDWizard.cxx
+++ b/Private/Source/GUIDWizard.cxx
@@ -12,9 +12,8 @@
// begin of ascii 'readable' characters. (A, C, C, 1, 2)
#define kAsciiBegin 47
-
// @brief Size of UUID.
-#define kUUIDSize 32
+#define kUUIDSize 37
namespace HCore::XRN::Version1 {
auto make_sequence(const ArrayList<UShort>& uuidSeq) -> Ref<GUIDSequence*> {
diff --git a/Private/Source/NewFS-IO.cxx b/Private/Source/NewFS-IO.cxx
index f5d550e0..7ecd396d 100644
--- a/Private/Source/NewFS-IO.cxx
+++ b/Private/Source/NewFS-IO.cxx
@@ -11,4 +11,6 @@
#include <KernelKit/DriveManager.hpp>
#include <KernelKit/FileManager.hpp>
+/// @brief this implements NewFS with Device Abstraction in mind.
+
/// bugs 0
diff --git a/Private/Source/Variant.cxx b/Private/Source/Variant.cxx
index a09c847c..a6e34119 100644
--- a/Private/Source/Variant.cxx
+++ b/Private/Source/Variant.cxx
@@ -21,7 +21,7 @@ const Char* Variant::ToString() {
case VariantKind::kPointer:
return ("Memory:{Pointer}");
default:
- return ("Class:{Undefined}");
+ return ("Memory:{Undefined}");
}
}