diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-01-01 23:25:44 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-01-01 23:25:44 +0100 |
| commit | e154cbf9a2a9eedd4c122d6619f25d29e04610ef (patch) | |
| tree | c02e69a8c41f58ebedc2e1cc0fbc3bb5437116d4 /dev/Boot/BootKit/Thread.h | |
| parent | ad97dd0ac528b837d14e9236369c823dec66aea8 (diff) | |
IMPL: Update to fixes to kernel and bootloader.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Boot/BootKit/Thread.h')
| -rw-r--r-- | dev/Boot/BootKit/Thread.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/dev/Boot/BootKit/Thread.h b/dev/Boot/BootKit/Thread.h index 4f6ba413..2f6e5b32 100644 --- a/dev/Boot/BootKit/Thread.h +++ b/dev/Boot/BootKit/Thread.h @@ -14,20 +14,19 @@ namespace Boot { using namespace Kernel; - class BThread; + class BootThread; - /// @brief Program loader class - /// @package nl.zeta.boot.api - class BThread final + /// @brief Bootloader Thread class. + class BootThread final { public: - explicit BThread() = delete; - ~BThread() = default; + explicit BootThread() = delete; + ~BootThread() = default; - explicit BThread(Kernel::VoidPtr blob); + explicit BootThread(Kernel::VoidPtr blob); - BThread& operator=(const BThread&) = default; - BThread(const BThread&) = default; + BootThread& operator=(const BootThread&) = default; + BootThread(const BootThread&) = default; Int32 Start(HEL::BootInfoHeader* handover, BOOL is_own_stack); void SetName(const char* name); |
