I am using a socket library found on the net, but it sometimes crashes due to signal 13...
07/12/03 10:14
Why ? What is signal 13 ? |
Signal 13 is SIGPIPE and this signal is sent to a process when it tries to write to a broken pipe. A broken pipe being a connection closed by the other end. The only way to prevent the crash is to catch the signal with an handler of yours or just to tell the OS to ignore this particular signal. |