Browse Source

Under Linux one gets SIG_ALRMs from time to time when using epoll. Ignore those.

dynamic-accesslists
erdgeist 17 years ago
parent
commit
992058383a
  1. 1
      opentracker.c

1
opentracker.c

@ -849,6 +849,7 @@ int main( int argc, char **argv ) { @@ -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" );

Loading…
Cancel
Save