An open API service indexing awesome lists of open source software.

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.

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.