2025-03-31 17:19:43 +03:00
|
|
|
#include "PhysicalPage.h"
|
|
|
|
|
2025-03-31 22:20:01 +03:00
|
|
|
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;
|
|
|
|
}
|