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