From 992058383ad316b678a0def5baea0fd8a4058389 Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Sat, 18 Aug 2007 09:29:39 +0000 Subject: Under Linux one gets SIG_ALRMs from time to time when using epoll. Ignore those. --- opentracker.c | 1 + 1 file changed, 1 insertion(+) diff --git a/opentracker.c b/opentracker.c index d97e73e..f39dbdb 100644 --- a/opentracker.c +++ b/opentracker.c @@ -849,6 +849,7 @@ int main( int argc, char **argv ) { signal( SIGPIPE, SIG_IGN ); signal( SIGINT, graceful ); + signal( SIGALRM, SIG_IGN ); if( init_logic( serverdir ) == -1 ) panic( "Logic not started" ); -- cgit v1.2.3