The purpose of this lab is to gain a deeper understanding of how to use signals function and the role they play in interprocess communication. Please make sure that you do all your work in the Edlab environment, otherwise, there may be inconsistent results and you will not receive points. Please read through this exercise and follow the instructions. After you do that, visit Gradescope and complete the questions associated with this exercise by the assigned due date.
The TA present in your lab will do a brief explanation of the various parts of this lab, but you are expected to answer all questions by yourself. Please raise your hand if you have any questions during the lab section. Questions and Parts have a number of points marked next to them to signify their weight in this lab’s final grade.
Once you have logged in to Edlab, you can clone this repo using
git clone <https://github.com/umass-cs-377/377-exercise-signals>
Then you can use cd
to open the directory you just cloned:
cd 377-exercise-signals
This repo includes a Makefile
that allows you to locally compile and run all the sample code listed in this tutorial. You can compile them by running make
. Feel free to modify the source files yourself, after making changes you can run make
again to build new binaries from your modified files. You can also use make clean
to remove all the built files, this command is usually used when something went wrong during the compilation so that you can start fresh.
Signal handlers in C/C++ are functions that are used to handle asynchronous events known as signals. Signals are software interrupts delivered to a running process to notify it of various events or conditions. These events can range from user-generated interruptions (e.g., Ctrl+C for SIGINT) to system-level events (e.g., segmentation fault for SIGSEGV). Signal handlers allow a program to respond to these events in a controlled manner.
The code below demonstrates how to handle the SIGINT (Signal Interrupt) signal, generated when a user presses Ctrl+C in a terminal to interrupt a running program. First, we define a function void sig_int(int signo). This is a signal handler function designed to capture the SIGINT signal.
When the program receives a SIGINT signal, the operating system calls this function. In this case, it simply prints the message "I AM IMMORTAL!!!" to the console and doesn't perform any other actions. Next, in main()
, we tell the OS which function it should invoke if the program receives a
SIGINT
. We do this with signal(SIGINT, sig_int)
.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <iostream>
using namespace std;
void sig_int(int signo) {
cout << "I AM IMMORTAL!!!" << endl;
}
int main() {
if (signal(SIGINT, sig_int) == SIG_ERR) {
exit(1);
}
int i = 0;
while (i++ < 20) {
sleep(1);
}
}
Occasionally, it can be beneficial for a program to trigger a signal within its own execution. This can be achieved using the alarm(unsigned int seconds)
function. This function accepts the number of seconds from the current moment to set an alarm. If the provided value is greater than 0, it schedules an alarm. If the value is 0, it cancels all pending alarms.
Another valuable function is pause()
. This function will remain in a sleep state indefinitely or until a signal is received that either terminates the process or triggers the execution of a signal-handling function.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <iostream>
using namespace std;
void sig_alarm(int signo) {
cout << "WAKE UP" << endl;
}
void my_sleep(int time){
// implement sleep using alarm/pause
}
int main() {
if (signal(SIGALRM, sig_alarm) == SIG_ERR) {
exit(1);
}
cout << "Going to sleep!" << endl;
alarm(4);
sleep(10);
cout << "Where is my coffee? " << endl;
}
While the signal function is straightforward to use, it suffers from portability issues, particularly in cases involving slow system calls (refer to 'man 2 signal' for more information). To address this limitation, Linux introduced the sigaction function, which offers a more robust approach to handling signals.