https://github.com/othmane099/producer-producerconsumer-consumer-model
This is a simulation of the model Producer-ProducerConsumer-Consumer.
https://github.com/othmane099/producer-producerconsumer-consumer-model
c c-language clanguage consumer linux producer producer-consumer producerconsumer
Last synced: 3 months ago
JSON representation
This is a simulation of the model Producer-ProducerConsumer-Consumer.
- Host: GitHub
- URL: https://github.com/othmane099/producer-producerconsumer-consumer-model
- Owner: othmane099
- Created: 2021-03-01T11:40:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-22T11:13:41.000Z (about 3 years ago)
- Last Synced: 2025-03-14T19:53:00.968Z (7 months ago)
- Topics: c, c-language, clanguage, consumer, linux, producer, producer-consumer, producerconsumer
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Producer-ProducerConsumer-Consumer-Model
This is a simulation of the model Producer-ProducerConsumer-Consumer. Using semaphores and sharing memory to make processes able to communicate and send messages to each others.
The Producer is the first process, it produces data and send it to ProducerConsumer. ProducerConsumer consume the data send it by Producer then it creates another data and send it to the third process the Consumer.
This model help students to understand communication between processes on Linux OS using programming language C.