1

make regs private again

This commit is contained in:
2022-07-04 21:23:14 +02:00
parent 2fbecc3236
commit 6ad1d9e525

View File

@ -36,10 +36,10 @@ private:
Thread(const Thread& copy) = delete; // Verhindere Kopieren
unsigned int* stack;
struct ThreadState regs;
public:
unsigned int tid; // Thread-ID (wird im Konstruktor vergeben)
struct ThreadState regs;
Thread();
~Thread();