relocate stack

This commit is contained in:
2026-02-24 10:00:31 +01:00
parent c92b15e2a6
commit 48fea8f8d8
3 changed files with 22 additions and 13 deletions

View File

@@ -34,7 +34,6 @@ class Thread {
void* start;
four_lvl_paging_t* paging_tree;
friend class Queue<Thread>;
friend class Semaphore;
@@ -75,7 +74,10 @@ class Thread {
void* isr;
} StackPointer;
void* operator new ( size_t count )noexcept;
pagetable_t* subtable;
four_lvl_paging_t* paging_tree;
pagetable_t* appcode_table;
pagetable_t* appstack_table;
/*! \brief Unique thread id */
const int id;