The problem must be something pretty simple but..I can't figure out what it is. It should keep printing "alaarm" for some time, but it only does it once and then the program dies:
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#include <signal.h>
void onAlarm();
void setupAlarm() {
signal(SIGALRM, onAlarm);
alarm(1);
}
void onAlarm() {
setupAlarm();
printf("alarmmmmmmmmmmmmmmmmm\n");
}
void main()
{
setupAlarm();
sleep(1000);
}
What might wrong in here? Taking out the sleep(1000) makes the program die instantaneously (that is, without showing even that one "alaaarm").
Answer
Ok, the following bit of code works:
void onAlarm() {
printf("alarmmmmmmmmmmmmmmmmm\n");
alarm(1);
sleep(1);
}
void main()
{
signal(SIGALRM, onAlarm);
alarm(1);
sleep(2);
}
but I am still wrapping my hand around this and trying to understand why I need to code it like this.
