summaryrefslogtreecommitdiffhomepage
path: root/dev/ZBA/Sources/Thread.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-19 10:14:36 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-19 10:14:36 +0200
commit933d1ef6721903895b15c45917a0fc705763fbf5 (patch)
tree1aed4505be011528b6a9799bcd29bbc846eefb4a /dev/ZBA/Sources/Thread.cxx
parentda70596895d8135e08f8caac6978117697b4c021 (diff)
[IMP]
+ Fixed big parts of the user manager's code. + Fixed New FS kernel support. + Allocate 2GB of RAM for kernel. - Reported bug to Jira regarding UserManager's TryLogin method. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZBA/Sources/Thread.cxx')
-rw-r--r--dev/ZBA/Sources/Thread.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/dev/ZBA/Sources/Thread.cxx b/dev/ZBA/Sources/Thread.cxx
index 5bd18b19..c13d25b9 100644
--- a/dev/ZBA/Sources/Thread.cxx
+++ b/dev/ZBA/Sources/Thread.cxx
@@ -26,7 +26,7 @@ EXTERN EfiBootServices* BS;
namespace Boot
{
- Thread::Thread(VoidPtr blob)
+ BThread::BThread(VoidPtr blob)
: fBlob(blob), fStartAddress(nullptr)
{
// detect the format.
@@ -138,7 +138,7 @@ namespace Boot
}
/// @note handover header has to be valid!
- Void Thread::Start(HEL::HandoverInformationHeader* handover)
+ Void BThread::Start(HEL::HandoverInformationHeader* handover)
{
BTextWriter writer;
@@ -162,17 +162,17 @@ namespace Boot
err_fn(handover);
}
- const Char* Thread::GetName()
+ const Char* BThread::GetName()
{
return fBlobName;
}
- Void Thread::SetName(const Char* name)
+ Void BThread::SetName(const Char* name)
{
CopyMem(fBlobName, name, StrLen(name));
}
- bool Thread::IsValid()
+ bool BThread::IsValid()
{
return fStartAddress != nullptr;
}