Hi,
I'm investigating
https://buildd.debian.org/status/package.php?p=libite on the latest
debian-hurd.img and found alarm() fire SIGALRM periodically.
static void sigalrm_handler(int signo) {
printf("alarm %ld\n", time(0));
}
int main() {
signal(SIGALRM, sigalrm_handler);
alarm(1);
while (1) sleep(3);
}
I see https://www.gnu.org/software/hurd/open_issues/alarm_setitimer.html
says "This issue was recently fixed (around January 2013)." but I'm
not sure what was fixed there. Is this considered a new bug?