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 7854259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T19:59:54+00:00 2026-06-02T19:59:54+00:00

I am trying to simulate send and receive functionality using pthreads. I did implement

  • 0

I am trying to simulate send and receive functionality using pthreads. I did implement the following code. But some times it hangs or produce wrong results.

int g_sender,g_receiver; //global variables to keep track of the sender and receiver
void send(double ** data,int sender,int receiver, int size[],int block_size){
    int i;
    pthread_mutex_lock(&lock);  
    for (i=0;i<size[0];i++)
            memcpy(sharedA[i],data[i],size[1]*block_size);
    g_sender = sender;
    g_receiver = receiver;
    sem_wait(&sem);
    pthread_mutex_unlock(&lock);

}

void receive(double ** data, int sender,int receiver, int size[],int block_size){
        int i;
    while(!(sender==g_sender && receiver==g_receiver));
    for(i=0;i<size[0];i++)
        memcpy(data[i],sharedA[i],size[1]*block_size);
    g_sender =-1;
    g_receiver = -1;
    sem_post(&sem);
}

what do you think I did miss here?

Thanks

  • 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-06-02T19:59:56+00:00Added an answer on June 2, 2026 at 7:59 pm

    a lot 🙂

    • what is the purpose of holding the lock?
    • never wait for a semaphore when holding a lock
    • always check the return value of library functions. In particular the
      sem_ functions are interruptible, you must check if an
      interrupt happened for sem_wait
    • if you are not so experienced with POSIX threads just don’t use
      sem_t. Use mutexes and condition variables instead. They are higher
      level interfaces better suited for application code.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to simulate a simple MIPS processor using behavior code in Verilog.
I am trying to send some simple mouse down/up messages to Windows Calculator using
I'm trying to simulate a token ring using python with sockets, but I have
I'm trying to simulate a particle system using OpenGl but I can't get it
I am trying to simulate the upper Macbook keys to any active app using
I am trying to simulate linux command ls using linux api from c. Looking
I'm trying to simulate rotating box using Newton Physics and OpenGL. This is what
I'm trying for several days to simulate a non-deterministic finite automata, using a map
I am trying to simulate a session using FactoryGirl / shoulda (it worked with
I'm trying to simulate the Matrix code rain with the canvas element and javascript.

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.