spz3/PhysicalPage.cpp

11 lines
255 B
C++
Raw Normal View History

2025-03-31 17:19:43 +03:00
#include "PhysicalPage.h"
PhysicalPage::PhysicalPage(const unsigned int PPN)
: PPN(PPN), idx(0), PT{nullptr}, next{nullptr}, prev(nullptr) {
2025-03-31 17:19:43 +03:00
}
void PhysicalPage::take_up(PageTable *PT, const unsigned int idx) {
this->idx = idx;
this->PT = PT;
}