-
Notifications
You must be signed in to change notification settings - Fork 3
/
Semaphores.h
31 lines (24 loc) · 860 Bytes
/
Semaphores.h
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
#ifndef SEMAPHORES_SEMAPHORES_HPP
#define SEMAPHORES_SEMAPHORES_HPP
#include <Processes.h>
#include <queue>
class Semaphore {
private:
std::queue<std::shared_ptr<PCB>> waitingPCB;
bool blocked = false;
int value;
public:
Semaphore(); //Podstawowy konstruktor, ustawia wartość na 99
Semaphore(const int& n); //wartość semafora ustawiana na początku
void wait(const std::shared_ptr<PCB>& pcb);
void signal();
void signal_all();
const bool& is_blocked() const;
const int& get_value() const;
void set_value(const int& val);
void show_value() const;
private:
void block(const std::shared_ptr<PCB>& pcb); //Zmienia stan procesu na WAITING i wywołuje funkcję check() od planisty
void wakeup(); //Zmienia stan pierwszego procesu na liście WaitingPCB na READY i wywołuje funkcję check () od planisty
};
#endif //SEMAPHORES_SEMAPHORES_HPP