Have processes enqueue their own threads

This commit is contained in:
Drew Galbraith 2023-05-18 13:28:22 -07:00
parent cb41953354
commit 0d275c72a1
4 changed files with 7 additions and 5 deletions

View file

@ -14,7 +14,7 @@ class Process {
uint64_t id() { return id_; }
uint64_t cr3() { return cr3_; }
Thread* CreateThread();
void CreateThread();
Thread* GetThread(uint64_t tid);
private: