acadia/zion/scheduler/thread.cpp
Drew Galbraith 960cbf9519 Add Scheduler wireframe.
Right now does nothing but has containing classes for process and thread
information.
2023-05-18 12:43:53 -07:00

5 lines
113 B
C++

#include "scheduler/thread.h"
#include "scheduler/process.h"
uint64_t Thread::pid() { return process_->id(); }