spz3/PhysicalPage.h

18 lines
341 B
C
Raw Permalink Normal View History

2025-03-31 17:19:43 +03:00
#ifndef PHYSICALPAGE_H
#define PHYSICALPAGE_H
#include "PageTable.h"
class PhysicalPage {
public:
unsigned int PPN, idx;
2025-04-01 16:29:33 +03:00
std::vector<PTE> *PT;
PhysicalPage *next, *prev;
2025-03-31 17:19:43 +03:00
explicit PhysicalPage(unsigned int PPN);
2025-04-01 16:29:33 +03:00
void take_up(std::vector<PTE> *PT, unsigned int idx);
2025-03-31 17:19:43 +03:00
};
#endif //PHYSICALPAGE_H