-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
152 lines (132 loc) · 4.34 KB
/
main.c
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#include <pthread.h>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <stdbool.h>
/**
*\brief Структура, описывающая философа
*\Поля: Имя, время потребеления пищи
**/
typedef struct philosopher
{
char* phillname;
int timetoeat;
} philosopher_t;
/**
*\brief Структура, описывающая стол
*\Поля: Массив вилок и массив стульев, представленные мьютексами
**/
typedef struct table
{
pthread_mutex_t chairs[5];
pthread_mutex_t forks[5];
} table_t;
/**
*\brief Структура для передачи параметров в поток
**/
typedef struct philosopher_arguments
{
philosopher_t *philosopher;
table_t *table;
} philosopher_arguments_t;
/**
*\brief Функция инициализации философа
**/
void init_philosopher(philosopher_t *philosopher, char *phillname_, int timetoeat_)
{
philosopher->phillname = phillname_;
philosopher->timetoeat = timetoeat_;
}
/**
*\brief Функция инициализации стола
**/
void init_table(table_t *table, const int num_of_phills)
{
for (int i = 0; i < num_of_phills; i++)
{
pthread_mutex_init(&table->forks[i], NULL);
}
for (int i = 0; i < num_of_phills; i++)
{
pthread_mutex_init(&table->chairs[i], NULL);
}
}
/**
*\brief Функция, моделирующая ужин философов
**/
void* eating(void *args)
{
philosopher_arguments_t *arg = (philosopher_arguments_t*) args;
philosopher_t *philosopher = arg->philosopher;
table_t *table = arg->table;
while (true)
{
time_t t;
int left_fork = 0;
int right_fork = 0;
left_fork = rand() % 5;
if (left_fork != 4)
{
right_fork = left_fork + 1;
}
printf("%s вошел в столовую и собирается ужинать. Ему необходимы вилки №%d и №%d\n",
philosopher->phillname, left_fork, right_fork);
pthread_mutex_lock(&table->chairs[left_fork]);
pthread_mutex_lock(&table->forks[left_fork]);
pthread_mutex_lock(&table->forks[right_fork]);
printf("%s начинает обедать, используя вилки №%d и №%d\n",
philosopher->phillname, left_fork, right_fork);
struct timespec passTime;
passTime.tv_sec = philosopher->timetoeat;
passTime.tv_nsec = 0;
nanosleep(&passTime, NULL);
pthread_mutex_unlock(&table->forks[left_fork]);
pthread_mutex_unlock(&table->forks[right_fork]);
pthread_mutex_unlock(&table->chairs[left_fork]);
printf("%s закончил обедать и положил вилки №%d и №%d\n",
philosopher->phillname, left_fork, right_fork);
passTime.tv_sec = 6;
passTime.tv_nsec = 0;
nanosleep(&passTime, NULL);
}
}
/**
*\brief Главная функция
**/
int main()
{
int timetoeat_;
char check = '\0';
const int num_of_phills = 5;
int i;
printf ("Введите время, выделенное на обед философа (в секундах): ");
while (scanf("%d%c", &timetoeat_, &check) != 2 || timetoeat_ <= 0 || check != '\n')
{
printf("Некорректное значение. Попробуйте снова: ");
rewind(stdin);
}
pthread_t threads[num_of_phills];
philosopher_t philosophers[num_of_phills];
philosopher_arguments_t arguments[num_of_phills];
table_t table;
init_table(&table, num_of_phills);
init_philosopher(&philosophers[0], "1 философ", timetoeat_);
init_philosopher(&philosophers[1], "2 философ", timetoeat_);
init_philosopher(&philosophers[2], "3 философ", timetoeat_);
init_philosopher(&philosophers[3], "4 философ", timetoeat_);
init_philosopher(&philosophers[4], "5 философ", timetoeat_);
for (i = 0; i < num_of_phills; i++)
{
arguments[i].philosopher = &philosophers[i];
arguments[i].table = &table;
}
for (i = 0; i < num_of_phills; i++)
{
pthread_create(&threads[i], NULL, eating, &arguments[i]);
}
for (i = 0; i < num_of_phills; i++)
{
pthread_join(threads[i], NULL);
}
return 0;
}