Add Scheduler wireframe.

Right now does nothing but has containing classes for process and thread
information.
This commit is contained in:
Drew Galbraith 2023-05-18 12:43:53 -07:00
parent de2c96b848
commit 960cbf9519
8 changed files with 208 additions and 1 deletions

View file

@ -0,0 +1,5 @@
#include "scheduler/thread.h"
#include "scheduler/process.h"
uint64_t Thread::pid() { return process_->id(); }