-
Notifications
You must be signed in to change notification settings - Fork 0
/
osadnicy.c
150 lines (119 loc) · 4.06 KB
/
osadnicy.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
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <time.h>
#include <pthread.h>
const long MAX_DNI = 365;
long CZAS_SPANIA = 5;
long max_dni = 0;
pthread_mutex_t mutex_dni;
typedef struct Zasoby_s {
long Zwierzyna;
long Pozywienie;
} Zasoby_t;
pthread_mutex_t mutex_Zasoby;
void *mysliwy(void *vargp);
void *kucharz(void *vargp);
void thread_create(pthread_t* threads, long size, pthread_attr_t *attr, void*(*f)(void*), void *vargp);
void thread_joinNfree(pthread_t* threads, long size);
void milisleep(long n);
int main(int argc, char *argv[]){
if( argc != 5 ) return 1;
srand(time(NULL));
Zasoby_t Zasoby;
long lmysliwi = strtol(argv[1], NULL, 10);
long lkucharze = strtol(argv[2], NULL, 10);
Zasoby.Zwierzyna = strtol(argv[3], NULL, 10);
Zasoby.Pozywienie = strtol(argv[4], NULL, 10);
printf("--Status poczatkowy:\nLiczba mysliwych: %ld\nLiczba kucharzy: %ld\nLiczba zwierzyny: %ld\nLiczba pozywienia: %ld\n\n",lmysliwi,lkucharze,Zasoby.Zwierzyna,Zasoby.Pozywienie);
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
pthread_mutex_init(&mutex_Zasoby, NULL);
pthread_mutex_init(&mutex_dni, NULL);
pthread_t *watki_mysliwi = (pthread_t *)malloc(lmysliwi*sizeof(pthread_t));
pthread_t *watki_kucharze = (pthread_t *)malloc(lkucharze*sizeof(pthread_t));
thread_create(watki_mysliwi, lmysliwi, &attr, &mysliwy, (void*)&Zasoby);
thread_create(watki_kucharze, lkucharze, &attr, &kucharz, (void*)&Zasoby);
pthread_attr_destroy(&attr);
thread_joinNfree(watki_mysliwi, lmysliwi);
thread_joinNfree(watki_kucharze, lkucharze);
pthread_mutex_destroy(&mutex_Zasoby);
pthread_mutex_destroy(&mutex_dni);
printf("--Status koncowy:\nLiczba mysliwych: 0\nLiczba kucharzy: 0\nLiczba zwierzyny: %ld\nLiczba pozywienia: %ld\nOsada przetrwala %ld dni.\n",Zasoby.Zwierzyna,Zasoby.Pozywienie,max_dni);
return 0;
}
void thread_joinNfree(pthread_t* threads, long size){
for(long i = 0; i < size; ++i)
pthread_join(threads[i], NULL);
free(threads);
}
void thread_create(pthread_t* threads, long size, pthread_attr_t *attr, void*(*f)(void*), void *vargp){
for(long i = 0; i < size; ++i)
pthread_create(&threads[i], attr, f, vargp);
}
void *mysliwy(void *vargp){
Zasoby_t *Zasoby = (Zasoby_t *)vargp;
int dzien;
for(dzien =0; dzien < MAX_DNI; ++dzien){
if( rand() % 6 > rand() % 6 ){
pthread_mutex_lock(&mutex_Zasoby);
++Zasoby->Zwierzyna;
pthread_mutex_unlock(&mutex_Zasoby);
}
pthread_mutex_lock(&mutex_Zasoby);
if( Zasoby->Pozywienie > 0 ){
--Zasoby->Pozywienie;
pthread_mutex_unlock(&mutex_Zasoby);
}
else{
pthread_mutex_unlock(&mutex_Zasoby);
break;
}
milisleep(CZAS_SPANIA);
}
pthread_mutex_lock(&mutex_dni);
if( dzien > max_dni ) max_dni = dzien;
pthread_mutex_unlock(&mutex_dni);
return NULL;
}
void *kucharz(void *vargp){
Zasoby_t *Zasoby = (Zasoby_t *)vargp;
int dzien;
for(dzien =0; dzien < MAX_DNI; ++dzien){
pthread_mutex_lock(&mutex_Zasoby);
if( Zasoby->Zwierzyna > 0 ){
--Zasoby->Zwierzyna;
Zasoby->Pozywienie += (rand() % 6) + 1;
}
pthread_mutex_unlock(&mutex_Zasoby);
pthread_mutex_lock(&mutex_Zasoby);
if( Zasoby->Pozywienie > 0 ){
--Zasoby->Pozywienie;
pthread_mutex_unlock(&mutex_Zasoby);
}
else{
pthread_mutex_unlock(&mutex_Zasoby);
break;
}
milisleep(CZAS_SPANIA);
}
pthread_mutex_lock(&mutex_dni);
if( dzien > max_dni ) max_dni = dzien;
pthread_mutex_unlock(&mutex_dni);
return NULL;
}
void milisleep(long n){
struct timespec sleep_time;
struct timespec rem;
sleep_time.tv_sec = 0;
sleep_time.tv_nsec = n*1000000L;
int retval;
do{
retval = nanosleep(&sleep_time, &rem);
sleep_time.tv_sec = rem.tv_sec;
sleep_time.tv_nsec = rem.tv_nsec;
rem.tv_sec = 0;
rem.tv_nsec = 0;
}while( retval == -1 && errno == EINTR );
}