From e154cbf9a2a9eedd4c122d6619f25d29e04610ef Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 1 Jan 2025 23:25:44 +0100 Subject: IMPL: Update to fixes to kernel and bootloader. Signed-off-by: Amlal El Mahrouss --- dev/Boot/BootKit/BootKit.h | 2 +- dev/Boot/BootKit/Thread.h | 17 ++++++++--------- 2 files changed, 9 insertions(+), 10 deletions(-) (limited to 'dev/Boot/BootKit') diff --git a/dev/Boot/BootKit/BootKit.h b/dev/Boot/BootKit/BootKit.h index ab9f9b8f..095fb0ac 100644 --- a/dev/Boot/BootKit/BootKit.h +++ b/dev/Boot/BootKit/BootKit.h @@ -47,7 +47,7 @@ namespace Boot { class BTextWriter; class BFileReader; - class BThread; + class BootThread; class BVersionString; typedef Char* PEFImagePtr; 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); -- cgit v1.2.3