-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKernSem.cpp
More file actions
60 lines (38 loc) · 757 Bytes
/
Copy pathKernSem.cpp
File metadata and controls
60 lines (38 loc) · 757 Bytes
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
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "Thread.h"
#include "KernSem.h"
#include "util.h"
#include "SysCall.h"
#include "SCHEDULE.H"
ID KernelSem::Id = 0;
KernelSem::KernelSem(int init) {
id = ++Id;
this->val = init;
blocked = new Queues<PCB>();
}
int KernelSem::value() {
return this->val;
}
ID KernelSem::getId() {
return id;
}
KernelSem::~KernelSem() {
delete blocked;
}
void KernelSem::wait() {
if(--val<0)
block();
}
void KernelSem::signal() {
if(val++<0)
deblock();
}
void KernelSem:: block() {
PCB::running->state=BLOCKED;
blocked->put(PCB::running,0);
SysCall::dispatch();
}
void KernelSem:: deblock(){
PCB* temp = blocked->getFirst();
temp->state=READY;
Scheduler::put(temp);
}