Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 615321
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:12:28+00:00 2026-05-13T18:12:28+00:00

This is the reader-writer problem for just read consistency. Here is the algorithm: void

  • 0

This is the reader-writer problem for just read consistency.
Here is the algorithm:

void reader() {
    while (1) {
        P(mutex); 
        rc++;
        if (rc == 1) P(db); /* <---- A */
        V(mutex); /* <---- B */
        read_data_base();
        P(mutex);
        rc--; 
        V(mutex);
        if (rc == 0) V(db);
    }
}

void writer() {
    while (1) {
        P(db); 
        write_data_base();
        V(db);
    }
}

Here are my questions:
1. What is the purpose of line A in the reader code?
2. If we eliminate that line will the code still work correctly?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:12:29+00:00Added an answer on May 13, 2026 at 6:12 pm
    • The purpose of line A, is to check if the current reader is the first one after a write (or the first one overall). If this is the case, then he has to obtain the database mutex (db), so that no writer can write to the database, while there is at least one reader reading it.

      The corresponding line for the last reader is:

      if (rc == 0) V(db);

      The purpose of this line, is to check if the current reader is the last reader, so that a writer can enter next (if there isn’t another reader that enters before the writer).

    • Based on the above description, if you eliminate line A, your code won’t work correctly.

    Note: As seen in Vlad’s answer below (and the discussion in the comments thereof), V(mutex) should be after if (rc == 0) V(db).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

another sql problem of mine .. this time the reader doesn't work properly (
I have this piece of code in c#: private static void _constructRow(SqlDataReader reader, system.IO.StreamWriter
I thought I solved this problem by closing and disposing my reader, but still
I wrote this function to get the unread count of google reader items. function
Possible Duplicate: How to Connect External NFC Card Reader to Tablet(Android 2.3.3) This is
I have a pymzml.run.Reader class from the pymzml package. This is a generator object,
I want to use an access card reader with PHP. I am doing this
This is an annoying problem I am having with Twisted.web. Basically, I have a
I'm trying to implement some sort of 'just-for-me' game engine and the problem's plot
Can anyone help me out of this problem, my javascript has an ajax GET

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.