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

  • Home
  • SEARCH
  • 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 6070059
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:53:25+00:00 2026-05-23T09:53:25+00:00

Linux I have two functions: functionA and functionB These two functions can be ran

  • 0

Linux

I have two functions: functionA and functionB

These two functions can be ran multithreaded, which:

  1. There is at most one functionA can be ran at a time
  2. There may be many functionB(s) can be ran at a time
  3. functionA and functionB are exclusive, i.e if functionA is being excuted
    then functionB must wait until functionA finishes, and if there is any instance of functionB
    is being executed then functionA must wait until all instances of functionB finish.

Could you please show me how to implement this using pthread in Linux? I tried many ways but it seems not clear enough.

Windows

How would I accomplish the same thing in Windows using C++?

  • 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-23T09:53:26+00:00Added an answer on May 23, 2026 at 9:53 am

    You can use boost to create a read-write lock:

    #include <boost/thread/locks.hpp>
    
    typedef boost::shared_mutex Lock;
    typedef boost::unique_lock< boost::shared_mutex > WrtieLock;
    typedef boost::shared_lock< boost::shared_mutex >  ReadLock;
    
    Lock myLock;
    
    
    void ReadFunction()
    {
        ReadLock r_lock(myLock);
        //Do reader stuff
    }
    
    void WriteFunction()
    {
         WriteLock w_lock(myLock);
         //Do writer stuff
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two Slackware Linux systems on which the POSIX semaphore sem_open() call fails
I have a C code executable for Linux. For release, I can have two
Is there a way to have Linux read ahead when cloning a disk? I
I've read chapter 7 in the 'Linux Device Drivers' (which can be found here)
I have two machines I work on: Windows Client (Development Machine) Linux Web Server
I have a WPF application, that I want to port to Linux/Mac. The most
I have a project which compiles in multiple platforms... Windows, Unix, Linux, SCO, name
I have two processes which are communicating over a pair of sockets created with
I'm new to Linux and have inherited keeping our single linux server running. It's
How do Window's programmers profile their native C++ code? On Unix/Linux you have gprof

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.