I'm trying to make my process restart when it receives SIGUSR1
.
Since SIGINT
is easier to test, I'm using it instead.
Here's the code:
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
void sig_handler(int signo){
if (signo == SIGINT){
char *args[] = { "./a", NULL };
write(1, "Restarting...\n", 14);
execv(args[0], args);
}
}
int main(void) {
printf("Starting...\n");
struct sigaction saStruct;
sigemptyset(&saStruct.sa_mask);
sigaddset(&saStruct.sa_mask, SIGINT);
saStruct.sa_flags = SA_NODEFER;
saStruct.sa_handler = sig_handler;
sigaction(SIGINT, &saStruct, NULL);
while (1)
sleep(1);
}
Unfortunately, this only works for the first time the signal is received. After that, it does nothing. I thought that the SA_NODEFER
flag should make this work the way I wanted to, but it doesn't.
Also, when I try with SIGUSR1
, it simply terminates the process.
The problem is here:
The way NODEFER affects signals is:
On the other hand (from Signals don't re-enable properly across execv()):
Just remove the line:
and you are done.