-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.cpp
More file actions
47 lines (42 loc) · 1.32 KB
/
process.cpp
File metadata and controls
47 lines (42 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include "process.h"
#include <iostream>
/* Construct a process object with a process id and its turnaround time.
** This is used for the vectors of completed processes because the only
** information we need to retain is the process id and turnaround time.
*/
Process::Process(int processId, int _turnaroundTime)
{
pid = processId;
turnaroundTime = _turnaroundTime;
}
/* Construct a process object with a process id, arrival(time), lifetime(in
** memory), and memory requirements.
*/
Process::Process(int processId, int arrival, int lifetime, int memoryReq)
{
pid = processId;
arrivalTime = arrival;
lifetimeInMemory = lifetime;
memoryRequirements = memoryReq;
}
/* Print info of a process, used for documenting */
void Process::printInfo()
{
std::cout << "Pid is " << pid << std::endl;
std::cout << "Arrival time " << arrivalTime << std::endl;
std::cout << "Lifetime " << lifetimeInMemory << std::endl;
std::cout << "Mem requirements " << memoryRequirements << std::endl;
}
/* Set the admitted time of a process */
void Process::setAdmittedTime(int virtualClock)
{
admittedTime = virtualClock;
}
/* Set the turnaround time of a process after calculating the time of its
** completion.
*/
void Process::setTurnaroundTime()
{
completedTime = admittedTime + lifetimeInMemory;
turnaroundTime = completedTime - arrivalTime;
}