spz3/PhysicalPage.cpp

11 lines
262 B
C++
Raw Normal View History

2025-03-31 17:19:43 +03:00
#include "PhysicalPage.h"
PhysicalPage::PhysicalPage(const unsigned int PPN)
2025-04-01 16:29:33 +03:00
: PPN(PPN), idx(0), PT{nullptr}, next(nullptr), prev(nullptr) {
2025-03-31 17:19:43 +03:00
}
2025-04-01 16:29:33 +03:00
void PhysicalPage::take_up(std::vector<PTE> *PT, const unsigned int idx) {
2025-03-31 17:19:43 +03:00
this->idx = idx;
this->PT = PT;
}