2025-03-31 17:19:43 +03:00
|
|
|
#include "Process.h"
|
|
|
|
|
|
|
|
Process::Process(PageTable *pageTable, const unsigned int executionTime)
|
2025-04-01 15:22:38 +03:00
|
|
|
: pageTable(pageTable), executionTime(executionTime) {
|
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;
|
|
|
|
}
|