Skip to content
Snippets Groups Projects
Commit 9f30d710 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Double SIGINT forces immediate exit.

parent cdab8a02
No related branches found
No related tags found
No related merge requests found
......@@ -8,15 +8,25 @@
/*----------------------------------------------------------------------------*/
static volatile short s_stopping = 0;
static cute_server* s_server = NULL;
// SIGINT signal handler
void interrupt_handle(int s)
{
// Invalid input
if(s != SIGINT || s_server == NULL)
return;
// Stop server
if(s == SIGINT && s_server != NULL) {
if(s_stopping == 0) {
s_stopping = 1;
cute_stop(s_server);
}
else {
log_error("\nOK! OK! Exiting immediately.\n");
exit(1);
}
}
int main( int argc, char **argv )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment