Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C program that does the following: 1) Counts and prints the number of SIGINT(Ctrl + C) signals received during the first 10 seconds

Write a C program that does the following:

1) Counts and prints the number of SIGINT(Ctrl + C) signals received during the first 10 seconds of its life. (5 points)

2) "Blocks" the SIGINT(Ctrl + C) signal once it reaches 10 seconds of its life. (5 points)

3) "Unblocks" and "Ignores" the SIGINT(Ctrl + C) signal once it reaches 20 seconds of its life. (5 points)

4) Terminates after 30 seconds of life. (5 points)

Hints+Requirements:

1. To ignore a signal, you must modify its signal handler using sigaction().

2. To count the SIGINTs, you must install a signal handler for SIGINT using sigaction().

3. You can use alarm() to send yourself a SIGALRM signal after a specified number of seconds.

4. A signal can be waited upon using a signal handler + sigsuspend() OR using sigwait().

5. In order to block/unblock a signal, you must modify the signal mask using sigprocmask()

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

Current Trends In Database Technology Edbt 2004 Workshops Edbt 2004 Workshops Phd Datax Pim P2panddb And Clustweb Heraklion Crete Greece March 2004 Revised Selected Papers Lncs 3268

Authors: Wolfgang Lindner ,Marco Mesiti ,Can Turker ,Yannis Tzitzikas ,Athena Vakali

2005th Edition

3540233059, 978-3540233053

More Books

Students also viewed these Databases questions

Question

3. What may be the goal of the team?

Answered: 1 week ago

Question

2. What type of team would you recommend?

Answered: 1 week ago