diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-19 10:14:36 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-19 10:14:36 +0200 |
| commit | 933d1ef6721903895b15c45917a0fc705763fbf5 (patch) | |
| tree | 1aed4505be011528b6a9799bcd29bbc846eefb4a /dev/ZBA/BootKit/Thread.hxx | |
| parent | da70596895d8135e08f8caac6978117697b4c021 (diff) | |
[IMP]
+ Fixed big parts of the user manager's code.
+ Fixed New FS kernel support.
+ Allocate 2GB of RAM for kernel.
- Reported bug to Jira regarding UserManager's TryLogin method.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZBA/BootKit/Thread.hxx')
| -rw-r--r-- | dev/ZBA/BootKit/Thread.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dev/ZBA/BootKit/Thread.hxx b/dev/ZBA/BootKit/Thread.hxx index 58b9683d..3946f6eb 100644 --- a/dev/ZBA/BootKit/Thread.hxx +++ b/dev/ZBA/BootKit/Thread.hxx @@ -14,20 +14,20 @@ namespace Boot { using namespace Kernel; - class Thread; + class BThread; /// @brief Program loader class /// @package nl.zeta.boot.api - class Thread final + class BThread final { public: - explicit Thread() = delete; - ~Thread() = default; + explicit BThread() = delete; + ~BThread() = default; - explicit Thread(Kernel::VoidPtr blob); + explicit BThread(Kernel::VoidPtr blob); - Thread& operator=(const Thread&) = default; - Thread(const Thread&) = default; + BThread& operator=(const BThread&) = default; + BThread(const BThread&) = default; void Start(HEL::HandoverInformationHeader* handover); const char* GetName(); @@ -35,7 +35,7 @@ namespace Boot bool IsValid(); private: - Char fBlobName[255] = { "Boot Thread" }; + Char fBlobName[255] = { "BootThread" }; VoidPtr fStartAddress{nullptr}; VoidPtr fBlob{nullptr}; }; |
