Skip to content

Commit

Permalink
ignore SIGPIPE by default
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto@freebsd64 committed Oct 5, 2011
1 parent 7dc059c commit 979f602
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions uwsgi.c
Expand Up @@ -873,6 +873,7 @@ int main(int argc, char *argv[], char *envp[]) {

signal(SIGHUP, SIG_IGN);
signal(SIGTERM, SIG_IGN);
signal(SIGPIPE, SIG_IGN);

//initialize masterpid with a default value
masterpid = getpid();
Expand Down

0 comments on commit 979f602

Please sign in to comment.