Skip to content

Multiple producers and single consumer problem using shared memory and semaphores

License

Notifications You must be signed in to change notification settings

chanioxaris/multiple-producers-single-consumer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

This is an implementation of single consumer - multiple producers problem. One main process (consumer), creates N child processes (producers) using the function fork(). Shared memory is used to exchange data between producers and consumer, protected with semaphores to protect the access to common resource. Each producer reads a random line from a text file and send it to consumer. Consumer capitalize the string sent from consumer and return it back, ready for grad from any consumer process, to print it as a result.

Structure

Shared Memory

Shared memory is a method of inter-process communication (IPC) between different processes. Moreover it's a memory that may be simultaneously accessed by multiple programs with an intent to provide communication among them or avoid redundant copies. More specific i used a shared memory which contains two different arrays, named "in-ds" and "out-ds".

  • in-ds: Producers write to array and consumer reads from it.
  • out-ds: Consumer writes to array and producers read from it.

Semaphores

Α semaphore is a variable or abstract data type used to control access to a common resource by multiple processes in a concurrent system such as a multiprogramming operating system. More specific i used four binaries semaphores, two for each array in shared memory, to control and synchronize the access in it. Producers and consumer operate (up and down) on both semaphores of each array, in crossed model, so we can ensure that no process is gonna write on a full array or read from an empty array.

Compile

./makefile

Usage

./capitalize -N [number of producers] -K [number of iterations]

About

Multiple producers and single consumer problem using shared memory and semaphores

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published