spz3/PhysicalPage.cpp

11 lines
262 B
C++

#include "PhysicalPage.h"
PhysicalPage::PhysicalPage(const unsigned int PPN)
: PPN(PPN), idx(0), PT{nullptr}, next(nullptr), prev(nullptr) {
}
void PhysicalPage::take_up(std::vector<PTE> *PT, const unsigned int idx) {
this->idx = idx;
this->PT = PT;
}