spz3/Process.h

17 lines
288 B
C
Raw Normal View History

2025-03-31 17:19:43 +03:00
#ifndef PROCESS_H
#define PROCESS_H
#include "PageTable.h"
class Process {
public:
PageTable *pageTable;
unsigned int executionTime, elapsedTime;
Process(PageTable *pageTable, unsigned int executionTime);
bool is_finished();
};
#endif //PROCESS_H