Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#include #include #include #include #include const char * FEMALE _ NAME _ ARRAY [ ] = { Anna , Betty, Catherine, Dorothy }

#include
#include
#include
#include
#include
const char* FEMALE_NAME_ARRAY[]
={"Anna",
"Betty",
"Catherine",
"Dorothy"
};
const char* MALE_NAME_ARRAY[]
={"Eric",
"Fred",
"Gerald",
"Hal"
};
const int NUM_CHILDREN =2;
const char* childNameArrayCPtr[NUM_CHILDREN];
pid_t childIdArray[NUM_CHILDREN];
You may change the names, but please keep both arrays the same length!
main() should do the following:
srand(getpid());
This resets the random number generator so that the program does not behave exactly the same each time.
Install an advanced handler to be called when SIGUSR1 is received. What will it do? Keep reading!
printf("Mother: \"I will give $20 to whomever finds my "
"decorative pin in the pile of grass. Go!\"
");
NUM_CHILDREN times, make a child process. Put the process id of the child in array childIdArray[].
The child process should run the program named "./child". In addition to giving the program name twice, pass the name of the child. Assuming int i is the loop variable telling which child to make, then one way to randomly choose the name of a child is with:
const char** nameArray;
nameArray =(i ==0)? FEMALE_NAME_ARRAY : MALE_NAME_ARRAY;
childNameArrayCPtr[i]
= nameArray[ rand()%
(sizeof(FEMALE_NAME_ARRAY)/ sizeof(const char*))
];
After making her children, the mother process just hangs out:
while (/* some condition */)
sleep(1);
What should /* some condition */ be? Well, you want the loop to stop after the process receives SIGUSR1. Therefore, what should your SIGUSR1 handler do?
After finishing the loop, have the mother process send SIGTERM to all of her child processes. Have your parent to a wait() for each child.
Finish with return(EXIT_SUCCESS);

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

T Sql Window Functions For Data Analysis And Beyond

Authors: Itzik Ben Gan

2nd Edition

0135861446, 978-0135861448

Students also viewed these Databases questions

Question

Explain in detail how the Mughal Empire was established in India

Answered: 1 week ago

Question

Problem: Evaluate the integral: I - -[ze dx

Answered: 1 week ago

Question

Problem: Evaluate the integral: I = 1- 1 dx 9

Answered: 1 week ago