1

use pointer instead of reference for thread

This commit is contained in:
2022-07-11 14:36:41 +02:00
parent 9c41c72011
commit 7058350414
2 changed files with 16 additions and 2 deletions

View File

@ -56,7 +56,7 @@ public:
void preempt();
void block();
void deblock(Thread& that);
void deblock(Thread* that);
};
#endif