Skip to content

Commit

Permalink
[fix] Do not ignore SIGTERM
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecki committed Jul 2, 2013
1 parent 50d99d3 commit 1ab4f7a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/aeternum.c
Expand Up @@ -190,8 +190,6 @@ int main(int argc, char *argv[]) {
signal (SIGINT, SIG_IGN);
if (signal (SIGHUP, handle_signal) == SIG_IGN)
signal (SIGHUP, SIG_IGN);
if (signal (SIGTERM, handle_signal) == SIG_IGN)
signal (SIGTERM, SIG_IGN);

loop = uv_default_loop();

Expand Down

0 comments on commit 1ab4f7a

Please sign in to comment.