Coder Social home page Coder Social logo

operating-system's Introduction

This problem is based on reader writer concept, in which reader has the priority over writer. It deals with computing problems in concurrency. It consist of N number of threads in which some thread may read and some thread can write. In this both reader and writer threads are trying to access the same resource present in critical section. Reader: N numbers of reader are present here, but initially a single reader will try to enter the critical section and it will lock the entry of all the writer threads and increment the reader counter. Meanwhile, before going to the critical section the reader thread will unlock the mutex for reader threads and welcomes the entry of other reader thread into the critical section. When all reader will come out from the critical section it will unlock the writer mutex. Writer: When it comes to writer thread, if it gets chance to get into critical section than it will lock the entry of all other writer threads and it will update the shared variable inside the critical section. When it comes out from the critical section again it will unlock the entry of writer. Hence, in this way no reader shall be kept waiting if the share is currently allocated for reader thread, this is also called readers priority over writer.

operating-system's People

Contributors

debasishbhol avatar

Watchers

James Cloos avatar

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.