spz3/Process.cpp

12 lines
330 B
C++
Raw Normal View History

2025-03-31 17:19:43 +03:00
#include "Process.h"
2025-04-01 16:29:33 +03:00
#include <utility>
Process::Process(const unsigned int id, std::vector<PTE> pageTable, const unsigned int executionTime)
: pageTable(std::move(pageTable)), executionTime(executionTime), id(id) {
2025-03-31 17:19:43 +03:00
}
2025-04-01 15:22:38 +03:00
bool Process::is_finished(const unsigned int elapsedTime) const {
2025-03-31 17:19:43 +03:00
return elapsedTime >= executionTime;
}