mirror of
git://erdgeist.org/opentracker
synced 2025-04-03 20:07:13 +08:00
Under Linux one gets SIG_ALRMs from time to time when using epoll. Ignore those.
This commit is contained in:
parent
77af0b475f
commit
992058383a
@ -849,6 +849,7 @@ int main( int argc, char **argv ) {
|
|||||||
|
|
||||||
signal( SIGPIPE, SIG_IGN );
|
signal( SIGPIPE, SIG_IGN );
|
||||||
signal( SIGINT, graceful );
|
signal( SIGINT, graceful );
|
||||||
|
signal( SIGALRM, SIG_IGN );
|
||||||
|
|
||||||
if( init_logic( serverdir ) == -1 )
|
if( init_logic( serverdir ) == -1 )
|
||||||
panic( "Logic not started" );
|
panic( "Logic not started" );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user