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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:28:45+00:00 2026-05-10T22:28:45+00:00

Please consider the following fork() / SIGCHLD pseudo-code. // main program excerpt for (;;)

  • 0

Please consider the following fork()/SIGCHLD pseudo-code.

  // main program excerpt     for (;;) {       if ( is_time_to_make_babies ) {          pid = fork();         if (pid == -1) {           /* fail */         } else if (pid == 0) {           /* child stuff */           print 'child started'           exit         } else {           /* parent stuff */           print 'parent forked new child ', pid           children.add(pid);         }        }     }    // SIGCHLD handler   sigchld_handler(signo) {     while ( (pid = wait(status, WNOHANG)) > 0 ) {       print 'parent caught SIGCHLD from ', pid       children.remove(pid);     }   } 

In the above example there’s a race-condition. It’s possible for ‘/* child stuff */‘ to finish before ‘/* parent stuff */‘ starts which can result in a child’s pid being added to the list of children after it’s exited, and never being removed. When the time comes for the app to close down, the parent will wait endlessly for the already-finished child to finish.

One solution I can think of to counter this is to have two lists: started_children and finished_children. I’d add to started_children in the same place I’m adding to children now. But in the signal handler, instead of removing from children I’d add to finished_children. When the app closes down, the parent can simply wait until the difference between started_children and finished_children is zero.

Another possible solution I can think of is using shared-memory, e.g. share the parent’s list of children and let the children .add and .remove themselves? But I don’t know too much about this.

EDIT: Another possible solution, which was the first thing that came to mind, is to simply add a sleep(1) at the start of /* child stuff */ but that smells funny to me, which is why I left it out. I’m also not even sure it’s a 100% fix.

So, how would you correct this race-condition? And if there’s a well-established recommended pattern for this, please let me know!

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. 2026-05-10T22:28:46+00:00Added an answer on May 10, 2026 at 10:28 pm

    Simplest solution would be to block SIGCHLD signal before fork() with sigprocmask() and unblock it in parent code after you have processed the pid.

    If child died, signal handler for SIGCHLD will be called after you unblock the signal. It is a critical section concept – in your case critical section starts before fork() and ends after children.add().

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

Sidebar

Ask A Question

Stats

  • Questions 155k
  • Answers 155k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer How about myInt = myInt * -1 May 12, 2026 at 10:40 am
  • Editorial Team
    Editorial Team added an answer Your best bet is probably the O_EXLOCK approach, wrapped into… May 12, 2026 at 10:40 am
  • Editorial Team
    Editorial Team added an answer Here is a weird workaround you could try for this… May 12, 2026 at 10:40 am

Related Questions

Please consider the following: <td style=width: 500px;> <div style=width: 400px;>SomeContent</div> </td> For some reason,
Please consider the following scenario: map(T,S*) & GetMap(); //Forward decleration map(T, S*) T2pS =
Please consider the following scenario in BizTalk 2006: Received message should be routed to
Please consider the following snippet: public interface MyInterface { public int getId(); } public

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.