#ifndef KERNEL_H #define KERNEL_H #include #include "PhysicalPage.h" #include "PageTable.h" #include "List.h" #include "Process.h" class Kernel { public: List free_pages, busy_pages; PhysicalPage *swapped_page; std::vector RunQ; Kernel(unsigned int RunQ_max_length, const List &free_pages, const List &busy_pages); void page_fault(PageTable *page_table, unsigned int idx); void stat_update(); }; #endif //KERNEL_H