You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apache-bugdb@apache.org by Holger Metschulat <ho...@as-informatik.de> on 2002/03/12 00:30:01 UTC

general/5089

The following reply was made to PR general/5089; it has been noted by GNATS.

From: Holger Metschulat <ho...@as-informatik.de>
To: apbugs@Apache.Org
Cc:  
Subject: general/5089
Date: Tue, 12 Mar 2002 00:28:22 +0100 (MET)

 The Bug seems to be in the Linux kernel: On this machine, all processes are
 invoked with the ALRM signal blocked. This also makes the usage of ping or
 ntpdate impossible. The following lines in child_main() solved the problem:
 
     sigemptyset(&sigs);
     sigaddset(&sigs,SIGALRM);
     sigprocmask(SIG_UNBLOCK,&sigs,NULL);
     signal(SIGALRM, alrm_handler);
 
 The OS was:
 
 Linux linux 2.2.16 #9 SMP Tue Sep 25 17:00:24 MEST 2001 i686 unknown