make regs private again
This commit is contained in:
@ -36,10 +36,10 @@ private:
|
|||||||
Thread(const Thread& copy) = delete; // Verhindere Kopieren
|
Thread(const Thread& copy) = delete; // Verhindere Kopieren
|
||||||
|
|
||||||
unsigned int* stack;
|
unsigned int* stack;
|
||||||
|
struct ThreadState regs;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
unsigned int tid; // Thread-ID (wird im Konstruktor vergeben)
|
unsigned int tid; // Thread-ID (wird im Konstruktor vergeben)
|
||||||
struct ThreadState regs;
|
|
||||||
|
|
||||||
Thread();
|
Thread();
|
||||||
~Thread();
|
~Thread();
|
||||||
|
|||||||
Reference in New Issue
Block a user