diff options
Diffstat (limited to 'dev/Boot/BootKit')
| -rw-r--r-- | dev/Boot/BootKit/BootKit.h | 2 | ||||
| -rw-r--r-- | dev/Boot/BootKit/Thread.h | 17 |
2 files changed, 9 insertions, 10 deletions
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); |
