set stackpointers in thread obj

This commit is contained in:
2025-11-26 04:11:11 +01:00
parent 2b0257f849
commit 4ffae9e1f0
2 changed files with 6 additions and 6 deletions

View File

@@ -28,7 +28,7 @@ class Thread {
/*! \brief pointer to the next element of the readylist
*/
Thread* queue_link;
bool isKernel;
bool isKernel = true;
void* start;
friend class Queue<Thread>;