Cleanup Thread constructor

This commit is contained in:
Drew Galbraith 2023-06-06 18:40:32 -07:00
parent 41d25a7b46
commit d9b17d96d7
3 changed files with 3 additions and 4 deletions

View file

@ -18,7 +18,7 @@ class Thread {
};
static SharedPtr<Thread> RootThread(Process& root_proc);
Thread(Process& proc, uint64_t tid, uint64_t entry);
Thread(Process& proc, uint64_t tid);
uint64_t tid() const { return id_; };
uint64_t pid() const;