diff options
Diffstat (limited to 'dev/ZBAKit/BootKit/Thread.h')
| -rw-r--r-- | dev/ZBAKit/BootKit/Thread.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dev/ZBAKit/BootKit/Thread.h b/dev/ZBAKit/BootKit/Thread.h index e7f4d4f1..e7c6763f 100644 --- a/dev/ZBAKit/BootKit/Thread.h +++ b/dev/ZBAKit/BootKit/Thread.h @@ -29,14 +29,16 @@ namespace Boot BThread& operator=(const BThread&) = default; BThread(const BThread&) = default; - void Start(HEL::HANDOVER_INFO_HEADER* handover); - const char* GetName(); + void Start(HEL::HANDOVER_INFO_HEADER* handover, BOOL is_own_stack); void SetName(const char* name); + const char* GetName(); bool IsValid(); private: Char fBlobName[255] = {"BootThread"}; VoidPtr fStartAddress{nullptr}; VoidPtr fBlob{nullptr}; + UInt8* fStack{nullptr}; + HEL::HANDOVER_INFO_HEADER* fHandover{nullptr}; }; } // namespace Boot |
