Automobili koji dolaze sa severa i juga dolaze do mosta koji ima jednu kolovoznu traku. Automobili iz suprotnog smera ne mogu istovremeno da budu na mostu. Napisati C program koji koršćenjem pthread biblioteke:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#define JA 10
#define SA 10
pthread_mutex_t mutexMost;
void *juzniAutomobili(void *threadid)
{
long tid;
tid = (long)threadid;
int sTime = rand() % 3;
sTime++;
sleep(sTime);
printf("Automobil %ld sa juga dolazi na most posle vremena %d.\n", tid, sTime);
pthread_mutex_lock (&mutexMost);
printf("Automobil %ld sa juga prelazi most.\n", tid);
sleep(1);
pthread_mutex_unlock (&mutexMost);
pthread_exit(NULL);
}
void *severniAutomobili(void *threadid)
{
long tid;
tid = (long)threadid;
int sTime = rand() % 3;
sTime++;
sleep(sTime);
printf("Automobil %ld sa severa dolazi na most posle vremena %d.\n", tid, sTime);
pthread_mutex_lock (&mutexMost);
printf("Automobil %ld sa severa prelazi most.\n", tid);
sleep(1);
pthread_mutex_unlock (&mutexMost);
pthread_exit(NULL);
}
int main (int argc, char *argv[])
{
pthread_t threads[JA + SA];
pthread_mutex_init(&mutexMost, NULL);
long t;
srand(time(NULL));
for (t = 0; t < JA; t++)
pthread_create(&threads[t], NULL, juzniAutomobili, (void *)t);
for (t = 0; t < SA; t++)
pthread_create(&threads[JA + t], NULL, severniAutomobili, (void *)t);
pthread_exit(NULL);
}
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#define JA 10
#define SA 10
pthread_mutex_t mutexMost;
pthread_cond_t condMost;
long broj = 0;
// 1 - jug, 2 - sever, 0 - neodredjeno
int smer = 0;
void *juzniAutomobili(void *threadid)
{
long tid;
tid = (long)threadid;
int sTime = rand() % 10;
sTime++;
sleep(sTime);
//printf("Automobil %ld sa juga dolazi na most posle vremena %d.\n", tid, sTime);
pthread_mutex_lock (&mutexMost);
while (smer == 2)
pthread_cond_wait(&condMost, &mutexMost);
broj++;
smer = 1;
pthread_mutex_unlock(&mutexMost);
printf("Automobil %ld sa juga prelazi most.\n", tid);
sleep(1);
pthread_mutex_lock (&mutexMost);
broj--;
if (!broj)
{
smer = 0;
pthread_cond_broadcast(&condMost);
}
pthread_mutex_unlock (&mutexMost);
pthread_exit(NULL);
}
void *severniAutomobili(void *threadid)
{
long tid;
tid = (long)threadid;
int sTime = rand() % 10;
sTime++;
sleep(sTime);
//printf("Automobil %ld sa severa dolazi na most posle vremena %d.\n", tid, sTime);
pthread_mutex_lock (&mutexMost);
while (smer == 1)
pthread_cond_wait(&condMost, &mutexMost);
broj++;
smer = 2;
pthread_mutex_unlock(&mutexMost);
printf("Automobil %ld sa severa prelazi most.\n", tid);
sleep(1);
pthread_mutex_lock(&mutexMost);
broj--;
if (!broj)
{
smer = 0;
pthread_cond_broadcast(&condMost);
}
pthread_mutex_unlock (&mutexMost);
pthread_exit(NULL);
}
int main (int argc, char *argv[])
{
pthread_t threads[JA + SA];
pthread_mutex_init(&mutexMost, NULL);
pthread_cond_init (&condMost, NULL);
long t;
srand(time(NULL));
for (t = 0; t < JA; t++)
pthread_create(&threads[t], NULL, juzniAutomobili, (void *)t);
for (t = 0; t < SA; t++)
pthread_create(&threads[JA + t], NULL, severniAutomobili, (void *)t);
pthread_exit(NULL);
}