Tagged Questions

5
votes
6answers
2k views

How to prevent SIGPIPEs (or handle them properly).

I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the c …
3
votes
4answers
2k views

How to handle a broken pipe (SIGPIPE) in python?

I've written a simple multi-threaded game server in python that creates a new thread for each client connection. I'm finding that every now and then, the server will crash because …
2
votes
2answers
193 views

Calling git from PHP: Broken pipe error

I have the following PHP script: #!/usr/bin/php <?php echo shell_exec( "/usr/bin/git clone --bare ". "/home/dave/create_project/template_project ". "/home/dave/create_pro …
2
votes
3answers
567 views

Broken pipe no longer ends programs ?

When you pipe two process and kill the one at the "output" of the pipe, the first process used to receive the "Broken Pipe" signal, which usually terminated it aswell. E.g. running …