Question: Modify your solution to Problem 8.24 so that one (and only one) child installs a Segmentation-fault handler which prints an error message and exits. What

Modify your solution to Problem 8.24 so that one (and only one) child installs a Segmentation-fault handler which prints an error message and exits. What is the output of the program after this change?

Modify your solution to Problem 8.24 so that one (and only one)

o w #include #include #include #include #include Cunistd.h> /* psignal */ #include /* waitpid */ #include /* waitpid */ #define N 2 int main() { int status, i; pid_t pid[N], ret_pid; 10 US No coin N /* Parent creates N children / for(i = 0; i 0) NO COO) in if (WIFEXITED (status)) printf("child sd terminated normally with exit status=3d ", ret_pid, WEXITSTATUS (status)); else if (WIFSIGNALED (status)) { /* Exited with a signal */ printf("child $d terminated by signal $d: ", ret_pid, SIGSEGV); psignal (WTERMSIG (status), NULL); else printf("child $d terminated abnormally ", ret_pid); /* The only normal termination is if there are no more children */ if (errno != ECHILD) printf("waitpid error"); UN POCO exit(0)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!