1 |
// Programmet bruker ISO C 2011 (ISO/IEC 9899:2011) og Pthreads (IEEE Std 1003.1c-1995). -*- coding: utf-8 -*- |
// Programmet bruker ISO C 2011 (ISO/IEC 9899:2011) og Pthreads (IEEE Std 1003.1c-2001). -*- coding: utf-8 -*- |
2 |
// Løsning programmert av Trond Endrestøl <Trond.Endrestol@ximalas.info>, 2014-11-06. |
// Løsning programmert av Trond Endrestøl <Trond.Endrestol@ximalas.info>, 2014-11-06. |
3 |
|
|
4 |
// $Ximalas$ |
// $Ximalas$ |
5 |
|
|
6 |
|
#if __STDC_VERSION__ < 199901L |
7 |
|
#error det er tvilsomt om du får kompilert denne kildekoden med så gammel C-kompilator |
8 |
|
#endif |
9 |
|
|
10 |
#include <errno.h> |
#include <errno.h> |
11 |
#include <pthread.h> |
#include <pthread.h> |
12 |
#include <signal.h> |
#include <signal.h> |
13 |
#include <stdbool.h> |
#include <stdbool.h> |
14 |
#include <stdio.h> |
#include <stdio.h> |
15 |
#include <stdlib.h> |
#include <stdlib.h> |
16 |
#include <string.h> |
#include <string.h> |
17 |
#include <time.h> |
#include <time.h> |
18 |
#include <unistd.h> |
#include <unistd.h> |
19 |
|
|
20 |
|
#if _POSIX_THREADS < 200112L |
21 |
|
#error her mangler det støtte for POSIX Threads anno 2001 |
22 |
|
#endif |
23 |
|
|
24 |
#if __STDC_VERSION__ >= 201112L |
#if __STDC_VERSION__ >= 201112L |
25 |
#include <stdnoreturn.h> |
#include <stdnoreturn.h> |
26 |
#else |
#else |
27 |
#define noreturn |
#define noreturn |
28 |
#endif |
#endif |
29 |
|
|
30 |
#define ANTALL_LIVSTIDSFANGER 19U |
#define ANTALL_LIVSTIDSFANGER 19U |
31 |
|
|
32 |
static unsigned antallBesok[ANTALL_LIVSTIDSFANGER]; |
static unsigned antallBesok[ANTALL_LIVSTIDSFANGER]; |
33 |
|
|
34 |
static size_t tellendeLivstidsfange; |
static size_t tellendeLivstidsfange; |
35 |
static unsigned antallLivstidsfanger; |
static unsigned antallLivstidsfanger; |
36 |
|
|
37 |
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; |
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; |
38 |
static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; |
static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; |
39 |
static bool brytere[2U]; |
static bool brytere[2U]; |
40 |
|
|
41 |
noreturn void *livstidsfange(void *arg); |
noreturn void *livstidsfange(void *arg); |
42 |
void visResultater(void); |
void visResultater(void); |
43 |
void signalhandler(int sig); |
void signalhandler(int sig); |
44 |
|
|
45 |
noreturn int main(int argc, char **argv) |
noreturn int main(int argc, char **argv) |
46 |
{ |
{ |
47 |
size_t i; |
size_t i; |
48 |
pthread_t tid = pthread_self(); |
pthread_t tid = pthread_self(); |
49 |
|
|
50 |
atexit(visResultater); |
if (argc >= 0) { // Bare for å få clang til å ti stille. |
51 |
signal(SIGINT, signalhandler); |
atexit(visResultater); |
52 |
|
signal(SIGINT, signalhandler); |
53 |
|
} // if |
54 |
|
|
55 |
#ifdef __FreeBSD__ |
#ifdef __FreeBSD__ |
56 |
srandomdev(); |
srandomdev(); |
57 |
#else |
#else |
58 |
srandom((unsigned int)time(NULL)); |
srandom((unsigned int)time(NULL)); |
59 |
#endif |
#endif |
60 |
|
|
61 |
memset((void *)&antallBesok, 0, sizeof(antallBesok)); |
memset((void *)&antallBesok, 0, sizeof(antallBesok)); |
62 |
brytere[0] = random() & 1; |
brytere[0] = random() & 1; |
63 |
brytere[1] = random() & 1; |
brytere[1] = random() & 1; |
64 |
|
|
65 |
tellendeLivstidsfange = random() % ANTALL_LIVSTIDSFANGER; |
tellendeLivstidsfange = random() % ANTALL_LIVSTIDSFANGER; |
66 |
|
|
67 |
printf("bryter %u er i utgangspunktet vippet %s\n", 1U, brytere[0] == true ? "opp" : "ned"); |
printf("bryter %u er i utgangspunktet vippet %s\n", 1U, brytere[0] == true ? "opp" : "ned"); |
68 |
printf("bryter %u er i utgangspunktet vippet %s\n", 2U, brytere[1] == true ? "opp" : "ned"); |
printf("bryter %u er i utgangspunktet vippet %s\n", 2U, brytere[1] == true ? "opp" : "ned"); |
188 |
{ |
{ |
189 |
size_t i; |
size_t i; |
190 |
|
|
191 |
fflush(stderr); |
fflush(stderr); |
192 |
fflush(stdout); |
fflush(stdout); |
193 |
|
|
194 |
puts("\nResultater:\n"); |
puts("\nResultater:\n"); |
195 |
|
|
196 |
printf("bryter %u er ved avslutning vippet %s\n", 1U, brytere[0] == true ? "opp" : "ned"); |
printf("bryter %u er ved avslutning vippet %s\n", 1U, brytere[0] == true ? "opp" : "ned"); |
197 |
printf("bryter %u er ved avslutning vippet %s\n", 2U, brytere[1] == true ? "opp" : "ned"); |
printf("bryter %u er ved avslutning vippet %s\n", 2U, brytere[1] == true ? "opp" : "ned"); |
198 |
printf("livstidsfange %2zu var den tellende livstidsfangen\n\n", tellendeLivstidsfange + 1); |
printf("livstidsfange %2zu var den tellende livstidsfangen\n\n", tellendeLivstidsfange + 1); |
199 |
|
|
200 |
for (i = 0; i < ANTALL_LIVSTIDSFANGER; i++) { |
for (i = 0; i < ANTALL_LIVSTIDSFANGER; i++) { |
201 |
printf("livstidsfange %2zu: antall besøk: %u\n", i + 1, antallBesok[i]); |
printf("livstidsfange %2zu: antall besøk: %u\n", i + 1, antallBesok[i]); |
202 |
} // for |
} // for |
203 |
|
puts(""); |
204 |
|
|
205 |
|
printf("antall livstidsfanger talt av den tellende livstidsfangen er %u\n", antallLivstidsfanger); |
206 |
|
|
207 |
fflush(stdout); |
fflush(stdout); |
208 |
fflush(stdout); |
fflush(stdout); |
209 |
} // visResultater() |
} // visResultater() |
210 |
|
|
211 |
void signalhandler(int sig) |
void signalhandler(int sig) |
212 |
{ |
{ |
213 |
if (sig == SIGINT) { |
if (sig == SIGINT) { |
214 |
exit(1); |
exit(1); |
215 |
} // if |
} // if |
216 |
} // signalhandler() |
} // signalhandler() |
217 |
|
|
218 |
// livstidsfanger.c |
// livstidsfanger.c |