summaryrefslogtreecommitdiffhomepage
path: root/dev/Boot/BootKit/Thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Boot/BootKit/Thread.h')
-rw-r--r--dev/Boot/BootKit/Thread.h17
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);