summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-23 09:37:47 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-23 09:37:47 +0200
commit4cd60b0edc5dee45d6a0e31931f79dff4d611865 (patch)
treea764636c1c61ff879566ccd487becb352098c2d1 /dev
parent8c9091c24fe976d358ae0209bc1a48e15b277d76 (diff)
[META] Code bump.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev')
-rw-r--r--dev/ZKA/HALKit/AMD64/HalKernelMain.cxx1
-rw-r--r--dev/ZKA/KernelKit/DeviceManager.hxx7
-rw-r--r--dev/ZKA/KernelKit/User.hxx2
3 files changed, 5 insertions, 5 deletions
diff --git a/dev/ZKA/HALKit/AMD64/HalKernelMain.cxx b/dev/ZKA/HALKit/AMD64/HalKernelMain.cxx
index 43c2248d..2e15bc99 100644
--- a/dev/ZKA/HALKit/AMD64/HalKernelMain.cxx
+++ b/dev/ZKA/HALKit/AMD64/HalKernelMain.cxx
@@ -229,7 +229,6 @@ Kernel::Void hal_real_init(Kernel::Void) noexcept
#ifdef __DEBUG__
const auto cPassword = "debug_usr";
- const auto cPasswordIncorrect = "debug_usr_invalid";
Kernel::User user{Kernel::RingKind::kRingSuperUser, kSuperUser};
diff --git a/dev/ZKA/KernelKit/DeviceManager.hxx b/dev/ZKA/KernelKit/DeviceManager.hxx
index d9497da8..3b6e3e54 100644
--- a/dev/ZKA/KernelKit/DeviceManager.hxx
+++ b/dev/ZKA/KernelKit/DeviceManager.hxx
@@ -66,14 +66,15 @@ namespace Kernel
{
return fOut && fIn;
}
- bool operator!()
+
+ Bool operator!()
{
return !fOut || !fIn;
}
private:
- void (*fOut)(T Data) = {nullptr};
- void (*fIn)(T Data) = {nullptr};
+ Void (*fOut)(T Data) = {nullptr};
+ Void (*fIn)(T Data) = {nullptr};
};
///
diff --git a/dev/ZKA/KernelKit/User.hxx b/dev/ZKA/KernelKit/User.hxx
index 55e93d9a..ac05b034 100644
--- a/dev/ZKA/KernelKit/User.hxx
+++ b/dev/ZKA/KernelKit/User.hxx
@@ -21,7 +21,7 @@
#define kMaxUserNameLen (255)
#define kMaxUserTokenLen (255)
-// hash 'password' -> base64+md5 encoded data
+// hash password.
// use this data to then fetch specific data of the user..
namespace Kernel