Git Product home page Git Product logo

multiple-producers-single-consumer's Introduction

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]

multiple-producers-single-consumer's People

Contributors

chanioxaris avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

liuxw7 empyreanx

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.