diff options
author | erdgeist <> | 2007-08-18 09:29:39 +0000 |
---|---|---|
committer | erdgeist <> | 2007-08-18 09:29:39 +0000 |
commit | 992058383ad316b678a0def5baea0fd8a4058389 (patch) | |
tree | 4d9e26fd35cce2593a244ea841dd5a4e0de48587 /opentracker.c | |
parent | 77af0b475f16c635b91ce5f38278eea71768b849 (diff) |
Under Linux one gets SIG_ALRMs from time to time when using epoll. Ignore those.
Diffstat (limited to 'opentracker.c')
-rw-r--r-- | opentracker.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 ) { | |||
849 | 849 | ||
850 | signal( SIGPIPE, SIG_IGN ); | 850 | signal( SIGPIPE, SIG_IGN ); |
851 | signal( SIGINT, graceful ); | 851 | signal( SIGINT, graceful ); |
852 | signal( SIGALRM, SIG_IGN ); | ||
852 | 853 | ||
853 | if( init_logic( serverdir ) == -1 ) | 854 | if( init_logic( serverdir ) == -1 ) |
854 | panic( "Logic not started" ); | 855 | panic( "Logic not started" ); |