I have an assignment to write a signal handler function that catches the SIGKILL signal and displays error messages the first 3 times it is called. On the 4th time that it handles a SIGKILL, it should set the signal handler to default and then send out SIGKILL to its process (which it will not catch).
I guess to use a loop and display the error messages in the first 3 iterations. Am I right? I have difficult to send SIGKILL to its process and set the handler to the default (which confuses me).
Can you give me advices?
According to
man 7 signal
,