15 lines
227 B
C++
15 lines
227 B
C++
#ifndef _PAGEFRAME_H_
|
|
#define _PAGEFRAME_H_
|
|
|
|
#include "../types.h"
|
|
|
|
class PageFrame {
|
|
private:
|
|
public:
|
|
bool available;
|
|
PageFrame* queue_link;
|
|
uint16_t ref_count;
|
|
PageFrame(){};
|
|
};
|
|
#endif
|