M2_SETI/T2/tp/exercice-1/preambule.c
2022-11-18 15:07:43 +01:00

52 lines
No EOL
1.2 KiB
C
Executable file

#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <semaphore.h>
#include <fcntl.h>
#define ERROR_INIT 1
#define ERROR_SUCCESS 0
#define SEMAPHORE_INITIAL_VALUE 0
#define SEM_NAME "/preambule_sem"
pthread_t thread_1;
sem_t *semaphore;
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
void *produce(void *params)
{
printf("Trying to own the mutex\n");
pthread_mutex_lock(&mutex);
printf("Owns the mutex\n");
pthread_mutex_unlock(&mutex);
printf("Mutex released\n");
sem_post(semaphore);
printf("Semaphore posted\n");
printf("Trying to gets the semaphore\n");
sem_wait(semaphore);
printf("Semaphore taken\n");
printf("Thread ended\n");
pthread_exit(NULL);
}
int main()
{
sem_unlink(SEM_NAME);
semaphore = sem_open(SEM_NAME, O_CREAT, 0644, SEMAPHORE_INITIAL_VALUE);
if (semaphore == SEM_FAILED)
{
perror("[sem_open");
return ERROR_INIT;
}
printf("Creating the thread\n");
pthread_create(&thread_1, NULL, produce, NULL);
printf("Waiting the thread end\n");
pthread_join(thread_1, NULL);
printf("Deleting the semaphore\n");
sem_destroy(semaphore);
printf("Process ended\n");
return ERROR_SUCCESS;
}