I am currently implementing a Producer/Consumers problem program. I have one parent and several child processes. Everything is working but now I need to make my program output each k milliseconds the progress of the task my program is doing.
At first I thought that maybe it'd be just about using the signal() and alarm() functions, but from some preliminary testing I've been making it doesn't seem enough. I have watched over several log files and it seems onAlarm() is not being called. I guess it has to do with the fact that as that both parent and children are "busy" they don't receive the events? Or even if they are busy, they should be able to receive calls on onAlarm()? The only workaround I see for this is to create yet another process, that has as single responsability dealing with this.
This is my "events" code:
void onAlarm() {
signal(SIGALRM, onAlarm);
alarm(0.01);
fprintf(outputFile, "ALAAAAAAAAAAAAAARMMMMMMMMMMM: %d\n", numberOfBytesRead);
}
int main() {
signal(SIGALRM, onAlarm);
alarm(0.01);
...
}
