Created
October 24, 2019 15:09
-
-
Save byyam/a76aa66f60961a97cd7a4a716a0ad61d to your computer and use it in GitHub Desktop.
pthread_semaphore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <unistd.h> | |
#include <pthread.h> | |
#include <stdio.h> | |
#include <semaphore.h> | |
#define NUM 5 | |
int queue[NUM]; | |
sem_t blank_number, product_number; | |
void *producer(void *arg) | |
{ | |
int p = 0; | |
while(1) { | |
sem_wait(&blank_number); | |
queue[p] = rand() % 1000 + 1; | |
printf("Produce %d\n", queue[p]); | |
sem_post(&product_number); | |
p = (p + 1)%NUM; | |
sleep(rand() % 5); | |
} | |
} | |
void *consumer(void *arg) | |
{ | |
int c = 0; | |
while(1) { | |
sem_wait(&product_number); | |
printf("Consume %d\n", queue[c]); | |
queue[c] = 0; | |
sem_post(&blank_number); | |
c = (c + 1) % NUM; | |
sleep(rand() % 5); | |
} | |
} | |
int main(int argc, char *argv[]) | |
{ | |
pthread_t pid, cid; | |
sem_init(&blank_number, 0, NUM); | |
sem_init(&product_number, 0, 0); | |
pthread_create(&pid, NULL, producer, NULL); | |
pthread_create(&cid, NULL, consumer, NULL); | |
pthread_join(pid, NULL); | |
pthread_join(cid, NULL); | |
sem_destroy(&blank_number); | |
sem_destroy(&product_number); | |
return 0; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment